From 7f0d9ec67e21a2e16a91d57117e8bf9aab09846c Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Wed, 11 Dec 2024 08:05:08 +0300 Subject: [PATCH 01/91] [MIRROR] xenomorph larva can evolve again (#5220) * xenomorph larva can evolve again (#4663) weh * [MIRROR] xenomorph larva can evolve again --------- Co-authored-by: Kocma-san <112967882+Kocma-san@users.noreply.github.com> Co-authored-by: StealsThePRs --- code/modules/mob/living/carbon/alien/larva/powers.dm | 4 ---- code/modules/mob/living/carbon/human/human_defense.dm | 4 ---- 2 files changed, 8 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/larva/powers.dm b/code/modules/mob/living/carbon/alien/larva/powers.dm index 1343682d896..d330983f20e 100644 --- a/code/modules/mob/living/carbon/alien/larva/powers.dm +++ b/code/modules/mob/living/carbon/alien/larva/powers.dm @@ -48,8 +48,6 @@ return TRUE -//NOVA EDIT REMOVAL BEGIN - NOVA_XENO_REDO - Moved to: modular_nova\modules\xenos_nova_redo\code\xeno_types\larva.dm -/* /datum/action/cooldown/alien/larva_evolve/Activate(atom/target) var/mob/living/carbon/alien/larva/larva = owner var/static/list/caste_options @@ -103,5 +101,3 @@ larva.alien_evolve(new_xeno) return TRUE -*/ -//NOVA EDIT REMOVAL END diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 265c19f21a7..2a075c6c4bc 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -200,8 +200,6 @@ apply_damage(damage, BRUTE, affecting, run_armor_check(affecting, MELEE)) return TRUE -//NOVA EDIT REMOVAL BEGIN - NOVA_XENO_REDO - Moved to: modular_nova\modules\xenos_nova_redo\code\human_defense.dm -/* /mob/living/carbon/human/attack_alien(mob/living/carbon/alien/adult/user, list/modifiers) . = ..() if(!.) @@ -253,8 +251,6 @@ if(!dismembering_strike(user, user.zone_selected)) //Dismemberment successful return TRUE apply_damage(damage, BRUTE, affecting, armor_block) -*/ -//NOVA EDIT REMOVAL END /mob/living/carbon/human/attack_larva(mob/living/carbon/alien/larva/L, list/modifiers) From 07f106d510dcf43cb67a2785596a8c8c2cce4c26 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Wed, 11 Dec 2024 08:05:33 +0300 Subject: [PATCH 02/91] Automatic changelog for PR #5220 [ci skip] --- html/changelogs/AutoChangeLog-pr-5220.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5220.yml diff --git a/html/changelogs/AutoChangeLog-pr-5220.yml b/html/changelogs/AutoChangeLog-pr-5220.yml new file mode 100644 index 00000000000..4cdd97ac40a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5220.yml @@ -0,0 +1,4 @@ +author: "Kocma-san" +delete-after: True +changes: + - bugfix: "xenomorph larva can evolve again" \ No newline at end of file From 778f2cf5d1a17d8833ad8da90b780499a405a70c Mon Sep 17 00:00:00 2001 From: RashCat Date: Wed, 11 Dec 2024 08:11:21 +0300 Subject: [PATCH 03/91] Well... It's done. (#5210) --- .../poster_contest/winners_items/code.dm | 179 ++++++++++++++++++ .../poster_contest/winners_items/icons.dmi | Bin 0 -> 1178 bytes .../winners_items/tesh_icons.dmi | Bin 0 -> 1116 bytes tgstation.dme | 1 + 4 files changed, 180 insertions(+) create mode 100644 tff_modular/modules/poster_contest/winners_items/code.dm create mode 100644 tff_modular/modules/poster_contest/winners_items/icons.dmi create mode 100644 tff_modular/modules/poster_contest/winners_items/tesh_icons.dmi diff --git a/tff_modular/modules/poster_contest/winners_items/code.dm b/tff_modular/modules/poster_contest/winners_items/code.dm new file mode 100644 index 00000000000..a7469e6ce2f --- /dev/null +++ b/tff_modular/modules/poster_contest/winners_items/code.dm @@ -0,0 +1,179 @@ +/datum/storage/pockets/painters_cloak + max_slots = 6 + attack_hand_interact = FALSE + max_specific_storage = WEIGHT_CLASS_NORMAL + quickdraw = FALSE + silent = TRUE + +/obj/item/toy/crayon/spraycan/extralarge + name = "large spray can" + charges = 300 + +/datum/storage/pockets/painters_cloak/New( + atom/parent, + max_slots, + max_specific_storage, + max_total_storage, +) + . = ..() + set_holdable(list( + /obj/item/toy/crayon, + /obj/item/toy/crayon/spraycan, + /obj/item/airlock_painter, + /obj/item/toner, + /obj/item/storage/crayons, + /obj/item/chisel, + /obj/item/paint_palette, + /obj/item/paint, + /obj/item/reagent_containers/cup/rag, + /obj/item/reagent_containers/spray/cleaner, + /obj/item/soap, + )) + +/obj/item/clothing/neck/cloak/poster_contest + name = "Artist's cape" + desc = "A perfectly tailored cloak, radiating elegance and precision. The smooth fabric and flawless design make it appear untouched by imperfection." + icon_state = "cape_icon" + icon = 'tff_modular/modules/poster_contest/winners_items/icons.dmi' + worn_icon_state = "cape" + worn_icon = 'tff_modular/modules/poster_contest/winners_items/icons.dmi' + worn_icon_teshari = 'tff_modular/modules/poster_contest/winners_items/tesh_icons.dmi' + resistance_flags = FIRE_PROOF + +/obj/item/clothing/neck/cloak/poster_contest/painted + name = "Artist's cape in paint" + desc = "A finely crafted cape that exudes a sense of individuality. Each stroke of dye, each subtle hue, feels deliberate, as if every imperfection tells a part of its story." + worn_icon_state = "painted_cape" + +/obj/item/clothing/neck/cloak/poster_contest/Initialize(mapload) + . = ..() + create_storage(storage_type = /datum/storage/pockets/painters_cloak) + var/static/items_inside = list( + /obj/item/toy/crayon/spraycan/extralarge = 5, + /obj/item/paint/anycolor = 1, + ) + generate_items_inside(items_inside, src) + +/obj/item/clothing/head/poster_contest + name = "Artist's beret" + desc = "An immaculately crafted beret that embodies refinement. Its pristine condition and sharp lines give it a polished, professional look." + icon_state = "beret_icon" + icon = 'tff_modular/modules/poster_contest/winners_items/icons.dmi' + worn_icon_state = "beret" + worn_icon = 'tff_modular/modules/poster_contest/winners_items/icons.dmi' + worn_icon_teshari = 'tff_modular/modules/poster_contest/winners_items/tesh_icons.dmi' + resistance_flags = FIRE_PROOF + +/obj/item/clothing/head/poster_contest/painted + name = "Artist's beret in paint" + desc = "A stylish beret, meticulously designed with an air of sophistication. Every stitch, every detail seems intentional, as though the fabric itself holds a spark of creative genius." + worn_icon_state = "painted_beret" + +/obj/item/poster/poster_contest + icon = 'tff_modular/modules/poster_contest/poster_contest.dmi' + name = "poster" + poster_type = /obj/structure/sign/poster/official/random + icon_state = "rolled_legit" + +// Kesa + +/obj/item/poster/poster_contest/who_i_am + poster_type = /obj/structure/sign/poster/official/ff_contest/who_i_am + +/obj/item/poster/poster_contest/kft_crazy_nuggets + poster_type = /obj/structure/sign/poster/contraband/ff_contest/kft_crazy_nuggets + icon_state = "rolled_traitor" + +/obj/item/poster/poster_contest/no_one_will_help + poster_type = /obj/structure/sign/poster/contraband/ff_contest/no_one_will_help + icon_state = "rolled_traitor" + +// Cash + +/obj/item/poster/poster_contest/a_faint_reminder + poster_type = /obj/structure/sign/poster/official/ff_contest/a_faint_reminder + +/obj/item/poster/poster_contest/dumayte + poster_type = /obj/structure/sign/poster/official/ff_contest/dumayte + +/obj/item/poster/poster_contest/fem_sec + poster_type = /obj/structure/sign/poster/contraband/ff_contest/fem_sec + icon_state = "rolled_traitor" + +// Maslina + +/obj/item/poster/poster_contest/time_for_discoveries + poster_type = /obj/structure/sign/poster/official/ff_contest/time_for_discoveries + +/obj/item/poster/poster_contest/say_yes_erp + poster_type = /obj/structure/sign/poster/official/ff_contest/say_yes_erp + +/obj/item/poster/poster_contest/pan_slavic_carpet_1 + poster_type = /obj/structure/sign/poster/official/ff_contest/pan_slavic_carpet_1 + +/obj/item/storage/box/posterbox/ff_contest1 + +/obj/item/storage/box/posterbox/ff_contest1/PopulateContents() + var/static/items_inside = list( + /obj/item/poster/poster_contest/who_i_am = 2, + /obj/item/poster/poster_contest/kft_crazy_nuggets = 2, + /obj/item/poster/poster_contest/no_one_will_help = 2, + ) + generate_items_inside(items_inside,src) + +/obj/item/storage/box/posterbox/ff_contest2 + +/obj/item/storage/box/posterbox/ff_contest2/PopulateContents() + var/static/items_inside = list( + /obj/item/poster/poster_contest/a_faint_reminder = 2, + /obj/item/poster/poster_contest/dumayte = 2, + /obj/item/poster/poster_contest/fem_sec = 2, + ) + generate_items_inside(items_inside,src) + +/obj/item/storage/box/posterbox/ff_contest3 + +/obj/item/storage/box/posterbox/ff_contest3/PopulateContents() + var/static/items_inside = list( + /obj/item/poster/poster_contest/time_for_discoveries = 2, + /obj/item/poster/poster_contest/say_yes_erp = 2, + /obj/item/poster/poster_contest/pan_slavic_carpet_1 = 2, + ) + generate_items_inside(items_inside,src) + +// Loadout: + +/datum/loadout_item/neck/painted_artist_cape + name = "Painted Artist's Cape" + item_path = /obj/item/clothing/neck/cloak/poster_contest/painted + ckeywhitelist = list("maslin_", "Smol42", "CashRat", "tonya677", "bowlofsoup") + +/datum/loadout_item/neck/artist_cape + name = "Artist's Cape" + item_path = /obj/item/clothing/neck/cloak/poster_contest + ckeywhitelist = list("maslin_", "Smol42", "CashRat", "tonya677", "bowlofsoup") + +/datum/loadout_item/head/artist_beret + name = "Artist's Beret" + item_path = /obj/item/clothing/head/poster_contest + ckeywhitelist = list("maslin_", "Smol42", "CashRat", "tonya677", "bowlofsoup") + +/datum/loadout_item/head/painted_artist_beret + name = "Painted Artist's Beret" + item_path = /obj/item/clothing/head/poster_contest/painted + ckeywhitelist = list("maslin_", "Smol42", "CashRat", "tonya677", "bowlofsoup") + +/datum/loadout_item/inhand/poster_contest1 + name = "Poster box" + item_path = /obj/item/storage/box/posterbox/ff_contest1 + ckeywhitelist = list("tonya677") + +/datum/loadout_item/inhand/poster_contest2 + name = "Poster box" + item_path = /obj/item/storage/box/posterbox/ff_contest2 + ckeywhitelist = list("CashRat") + +/datum/loadout_item/inhand/poster_contest3 + name = "Poster box" + item_path = /obj/item/storage/box/posterbox/ff_contest3 + ckeywhitelist = list("maslin_") diff --git a/tff_modular/modules/poster_contest/winners_items/icons.dmi b/tff_modular/modules/poster_contest/winners_items/icons.dmi new file mode 100644 index 0000000000000000000000000000000000000000..a2e283402081f1c31fbb3accd61329ccd4abf104 GIT binary patch literal 1178 zcmV;L1ZDe)P)004jp0{{R3ySoS$;mS*#>2knt0#uv|1VvUf;IrVUlN??I9H=j7iT`ez`!Ua zB3SZC6#xJL0d!JMQvg8b*k%9#0F8Q7Sad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1 z86L7naHCXiMs z?rFY1J*Pyt0t#GY-rfwuFbqS9bNLUzR|C*t4#R_mtz5hZaM$Z9<6j&k93cnf7?1*x zB2Y?w6~W)24T47surLS$iLupVGntHT1&14teL|ikbR*m-hpCVRUm2w0tp0u#8J*7*sy2q z_T)LjUtuIrh}|WyG|9+U)dF5&G>-66_6Srw1KJ)`m~QEE5W)@_N#62=q0x-hFpTq4 zAFiCdDsB(ZRHHT}Nb`_h5@|swEs8fVFB>~4OsyBIiz>vZo3^w-Hw2+})@B&r&$^nq z_})S!HvcaKA>iV@FZ+MDD|wJj)Dia);z%z_-ekIj5FkqGGvvSBZtWBf1HH(vLJ_na zQTTt?ciH6I%Y7X0Nrh0veHcbJRx?o=3}2({|0Vf~vEb5F-~s+$@C^rh@AvzEZ3Tv~ z+yC>IwgUZb|F5M$7a|Fq4)_0#V)g%~_+%2*{@>$ZRUb2lu=sym8BeWy!`dp{@;_;cM5@v|M%pjD4VXa`Bm`$&LPnJKg0OHsW>-I_!?lldaR9xQ^o(Q zlwWi3@|PE4db)b3D0GiU$^WaBUw80I?wH2^dlvn_DaHVy^j(a?!9#IV&jp?T7eKNu z9;tj^^fmSkBEjqYKY8hIgP36$hG7_nVHk#C7(bf((DVDfIyjd6zcWDo--F)=I}7Nv zo0^94{Z!A_c4j+1i#Yd|!m^%>o$;gs*WQ z^wC!pxPAQ!^1;RL6v(`&@%1|reYRBbB@l&?q@T70#O0?B^52d+L@Sxi$pT5t sgWWmnkC^8y@T~Qhna?fHFn%Jx0PfrqnVO?004jp0{{R3ySoS$;QLJ$ulYEt0#uv|1VvUyI&HV=r~uSPZwuCf;Iraz`!Ua zA`NlbhX4Qo0d!JMQvg8b*k%9#0FQc9Sad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1 zYgHQ4~c{6y@&#?_Xt5C~uwL1Ry|OZy<&smm*fNt1xi0*1$ND zA;tv^()kf{2%Q9+quUpXV>wxBy=U`p`snIof*fS1fY1cKhJnxTxvL?MFk5@P0SrA* zp^WRI972^(lbOu@OUTYQKg8r#l*3}7b9@azwr-vQ#ygXnuXqbW2<<>3N4x>WISxb< zs`87(_J<#07^UIORY-kIURV_rG=xb~7DDN+3zNHEn0{O3K^-ZOUF4*&hm^lcAf{eE15|~y(Q=Y{rtpRM9C~%M`;E<-VA@o&GL?Y}d<*yRREo7|)R@RU7YJN=M zNh_hED2j3fepff7=hXjEQp5neB^;u@@WRq zX^ddyTa}`8p|$^alHu--`sqlHo|2v87|2@iuMcIWq z&XZFj2rLfpP%W@BY%gIQqy$ob-xsDRilTJD%)*Ppznp=!@4#32f8J2ez$1Q_;`t9#f2#$4M$K#)%*5Ns#L z0C7E4(pjW$f}B~guR!wH-*&8W#jagww!@tTiQAFIB(RrJn&qX#oxc=@kxhdO9R-4O zw7}4R>8quV0+T)v1wt=@N!m73DS^91WNyGX)2I7zWZ?x_7IrAEKEQt ze|LfDSf>H Date: Wed, 11 Dec 2024 08:11:46 +0300 Subject: [PATCH 04/91] Automatic changelog for PR #5210 [ci skip] --- html/changelogs/AutoChangeLog-pr-5210.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5210.yml diff --git a/html/changelogs/AutoChangeLog-pr-5210.yml b/html/changelogs/AutoChangeLog-pr-5210.yml new file mode 100644 index 00000000000..606b341e932 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5210.yml @@ -0,0 +1,4 @@ +author: "RashCat" +delete-after: True +changes: + - rscadd: "Some private items for the winners of FF poster contest" \ No newline at end of file From ec0cbbc24ff278811c46f0d8ef5cee3aeca73ae8 Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:39:20 +0000 Subject: [PATCH 05/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5210.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5220.yml | 4 ---- html/changelogs/archive/2024-12.yml | 5 +++++ 3 files changed, 5 insertions(+), 8 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5210.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5220.yml diff --git a/html/changelogs/AutoChangeLog-pr-5210.yml b/html/changelogs/AutoChangeLog-pr-5210.yml deleted file mode 100644 index 606b341e932..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5210.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "RashCat" -delete-after: True -changes: - - rscadd: "Some private items for the winners of FF poster contest" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5220.yml b/html/changelogs/AutoChangeLog-pr-5220.yml deleted file mode 100644 index 4cdd97ac40a..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5220.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Kocma-san" -delete-after: True -changes: - - bugfix: "xenomorph larva can evolve again" \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index f9a2e07eb27..d1a056e27d5 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -720,3 +720,8 @@ work over a remote connection, however. - rscadd: Borgs now get the job title of someone sending them a message through SiliConnect. +2024-12-11: + Kocma-san: + - bugfix: xenomorph larva can evolve again + RashCat: + - rscadd: Some private items for the winners of FF poster contest From 813af15dcf128fcbf308018a7cb49c32ce9241b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B9=91=C3=AF?= <111681347+Smol42@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:18:23 +0000 Subject: [PATCH 06/91] Minor Box Station fix (#5185) * minor box fix * Update NSSJourney.dmm * bipbipbip --- _maps/map_files/NSSJourney/NSSJourney.dmm | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/_maps/map_files/NSSJourney/NSSJourney.dmm b/_maps/map_files/NSSJourney/NSSJourney.dmm index 5becaa972c4..fefb559efd7 100644 --- a/_maps/map_files/NSSJourney/NSSJourney.dmm +++ b/_maps/map_files/NSSJourney/NSSJourney.dmm @@ -879,12 +879,6 @@ dir = 1 }, /area/station/engineering/main) -"ajw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "ajx" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -1176,6 +1170,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/iron/dark{ icon_state = "textured_dark_large" }, @@ -23491,6 +23486,7 @@ /obj/machinery/door/airlock/service{ name = "Bar Entrance" }, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large{ icon_state = "textured_dark_half" }, @@ -31127,7 +31123,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, /obj/effect/mapping_helpers/airlock/access/any/engineering/construction, /turf/open/floor/plating, /area/station/maintenance/port/aft) @@ -44180,7 +44175,7 @@ /area/station/hallway/secondary/exit) "mHQ" = ( /obj/machinery/door/airlock/bathroom{ - name = "Cabin 2" + name = "Restrooms" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -48236,6 +48231,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/effect/turf_decal/siding/wideplating/dark, +/obj/structure/disposalpipe/segment, /turf/open/floor/wood/large{ icon_state = "wood_parquet" }, @@ -53800,7 +53796,7 @@ /area/station/security/prison) "sHg" = ( /obj/machinery/door/airlock/bathroom{ - name = "Cabin 2" + name = "Restrooms" }, /obj/structure/cable, /turf/open/floor/iron/dark/herringbone, @@ -59797,6 +59793,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/landmark/start/hangover, +/obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark/smooth_large{ icon_state = "textured_dark_half" }, @@ -79086,7 +79083,7 @@ alR aoj hKJ apP -ajw +aiR alU uWN iEe From 2c1e180774dc3cd987df2953f136c70b2c9cb37f Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:18:51 +0300 Subject: [PATCH 07/91] Automatic changelog for PR #5185 [ci skip] --- html/changelogs/AutoChangeLog-pr-5185.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5185.yml diff --git a/html/changelogs/AutoChangeLog-pr-5185.yml b/html/changelogs/AutoChangeLog-pr-5185.yml new file mode 100644 index 00000000000..32d2028116d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5185.yml @@ -0,0 +1,4 @@ +author: "Smol42" +delete-after: True +changes: + - bugfix: "fixed some minor issues." \ No newline at end of file From b53143ddb4045449139464329dffcb0d70be5c2f Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 01:37:14 +0000 Subject: [PATCH 08/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5185.yml | 4 ---- html/changelogs/archive/2024-12.yml | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5185.yml diff --git a/html/changelogs/AutoChangeLog-pr-5185.yml b/html/changelogs/AutoChangeLog-pr-5185.yml deleted file mode 100644 index 32d2028116d..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5185.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Smol42" -delete-after: True -changes: - - bugfix: "fixed some minor issues." \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index d1a056e27d5..39c38644d50 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -725,3 +725,6 @@ - bugfix: xenomorph larva can evolve again RashCat: - rscadd: Some private items for the winners of FF poster contest +2024-12-12: + Smol42: + - bugfix: fixed some minor issues. From ce542944428d7becd3383571e4737e5a102c615d Mon Sep 17 00:00:00 2001 From: Kocma-san <112967882+Kocma-san@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:54:41 +0700 Subject: [PATCH 09/91] =?UTF-8?q?=D0=9D=D0=BE=D0=B2=D0=B0=D1=8F=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=B3=D0=BE=D0=B4=D0=B0=20-=20=D1=81=D0=BD=D0=B5=D0=B3?= =?UTF-8?q?=D0=BE=D0=BF=D0=B0=D0=B4=20(#5222)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tff_modular/modules/snowfall/snowfall.dm | 29 ++++++++++++++++++++++++ tgstation.dme | 1 + 2 files changed, 30 insertions(+) create mode 100644 tff_modular/modules/snowfall/snowfall.dm diff --git a/tff_modular/modules/snowfall/snowfall.dm b/tff_modular/modules/snowfall/snowfall.dm new file mode 100644 index 00000000000..0d013b6ba50 --- /dev/null +++ b/tff_modular/modules/snowfall/snowfall.dm @@ -0,0 +1,29 @@ +// Безопасный снегопад! Без урона и не так сильно перекрывает видимость, в отличие от снежной бури. ff в начале, потому что апстримы могут свой с похожим именем сделать... +/datum/weather/snow_storm/ff_snowfall + name = "snowfall" + desc = "Little snowflakes are falling from the sky. So calm and peaceful..." + probability = 0 + + telegraph_duration = 0 + + weather_message = span_warning("Little snowflakes are falling from the sky...") + weather_overlay = "light_snow" + weather_duration_lower = 1800 + weather_duration_upper = 3000 + + end_message = span_warning("Less snowflakes fall from the sky...") + end_duration = 100 + + cooling_lower = 1 + cooling_upper = 3 + + var/harmfull = FALSE + +/datum/weather/snow_storm/ff_snowfall/weather_act(mob/living/living) + if(!harmfull) + return + return ..() + +/datum/weather/snow_storm/ff_snowfall/forever + probability = 0 + perpetual = TRUE diff --git a/tgstation.dme b/tgstation.dme index f3c156931fa..99181e2ea0f 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -8888,6 +8888,7 @@ #include "tff_modular\modules\selestial_language\language.dm" #include "tff_modular\modules\silicon_laws_tweaks\code\upload.dm" #include "tff_modular\modules\smites\femboyfication.dm" +#include "tff_modular\modules\snowfall\snowfall.dm" #include "tff_modular\modules\timed_citations\crime.dm" #include "tff_modular\modules\toys\code\loadout_datum_toys.dm" #include "tff_modular\modules\toys\code\plushes.dm" From 5d88eac8da56e2050611713d6e0c161f9c0a08f1 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Thu, 12 Dec 2024 18:55:10 +0300 Subject: [PATCH 10/91] Automatic changelog for PR #5222 [ci skip] --- html/changelogs/AutoChangeLog-pr-5222.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5222.yml diff --git a/html/changelogs/AutoChangeLog-pr-5222.yml b/html/changelogs/AutoChangeLog-pr-5222.yml new file mode 100644 index 00000000000..efd6e1f2330 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5222.yml @@ -0,0 +1,4 @@ +author: "Kocma-san" +delete-after: True +changes: + - rscadd: "new weather - snowfall" \ No newline at end of file From a64d7968df603f7ef0b01f2423b80cb8971f0024 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 12 Dec 2024 18:56:20 +0300 Subject: [PATCH 11/91] [MIRROR] Bitrunning Easy mode (#5221) * Bitrunning Easy mode (#4652) * Initial Commit * pizza fix * Update code/modules/bitrunning/server/loot.dm Co-authored-by: FlufflesTheDog * Update code/modules/bitrunning/server/loot.dm Co-authored-by: FlufflesTheDog * removes the gondola pill fix --------- Co-authored-by: FlufflesTheDog * [MIRROR] Bitrunning Easy mode --------- Co-authored-by: OrbisAnima Co-authored-by: FlufflesTheDog Co-authored-by: StealsThePRs --- code/modules/bitrunning/server/loot.dm | 4 ++-- modular_nova/modules/bitrunning/code/disks.dm | 3 +++ modular_nova/modules/bitrunning/code/flair.dm | 1 + modular_nova/modules/bitrunning/code/loot.dm | 2 ++ tgstation.dme | 1 + 5 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 modular_nova/modules/bitrunning/code/loot.dm diff --git a/code/modules/bitrunning/server/loot.dm b/code/modules/bitrunning/server/loot.dm index e4c523099ea..b419ba32fc7 100644 --- a/code/modules/bitrunning/server/loot.dm +++ b/code/modules/bitrunning/server/loot.dm @@ -30,9 +30,9 @@ spark_at_location(cache) // abracadabra! qdel(cache) // and it's gone! - SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points) + SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points * 2) // NOVA EDIT CHANGE - Original : SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points) - points += generated_domain.reward_points + points += (generated_domain.reward_points * 2) // NOVA EDIT CHANGE - Original : points += generated_domain.reward_points playsound(src, 'sound/machines/terminal/terminal_success.ogg', 30, vary = TRUE) var/bonus = calculate_rewards() diff --git a/modular_nova/modules/bitrunning/code/disks.dm b/modular_nova/modules/bitrunning/code/disks.dm index 3a0d202435a..8996ac61a4c 100644 --- a/modular_nova/modules/bitrunning/code/disks.dm +++ b/modular_nova/modules/bitrunning/code/disks.dm @@ -1,3 +1,6 @@ +/obj/item/bitrunning_disk + w_class = WEIGHT_CLASS_SMALL + /obj/item/bitrunning_disk/ability/tier0 name = "bitrunning program: cantrip" selectable_actions = list( diff --git a/modular_nova/modules/bitrunning/code/flair.dm b/modular_nova/modules/bitrunning/code/flair.dm index f454cbd4296..b95f38124ac 100644 --- a/modular_nova/modules/bitrunning/code/flair.dm +++ b/modular_nova/modules/bitrunning/code/flair.dm @@ -92,5 +92,6 @@ /obj/item/pizzabox/vegetable, /obj/item/pizzabox/mushroom, /obj/item/pizzabox/meat, + /obj/item/pizzabox/sassysage, /obj/item/pizzabox/pineapple, ) diff --git a/modular_nova/modules/bitrunning/code/loot.dm b/modular_nova/modules/bitrunning/code/loot.dm new file mode 100644 index 00000000000..b844617411f --- /dev/null +++ b/modular_nova/modules/bitrunning/code/loot.dm @@ -0,0 +1,2 @@ +/obj/item/pizzabox/sassysage + pizza = /obj/item/food/pizza/sassysage diff --git a/tgstation.dme b/tgstation.dme index 99181e2ea0f..759691794ea 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -7183,6 +7183,7 @@ #include "modular_nova\modules\better_vox\code\vox_sprite_accessories.dm" #include "modular_nova\modules\bitrunning\code\disks.dm" #include "modular_nova\modules\bitrunning\code\flair.dm" +#include "modular_nova\modules\bitrunning\code\loot.dm" #include "modular_nova\modules\bitrunning\code\mobs.dm" #include "modular_nova\modules\bitrunning\code\outfit.dm" #include "modular_nova\modules\bitrunning\code\spells.dm" From b3cee605e6ed17dd0847780b5f793e7b03507de3 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Thu, 12 Dec 2024 18:57:02 +0300 Subject: [PATCH 12/91] Automatic changelog for PR #5221 [ci skip] --- html/changelogs/AutoChangeLog-pr-5221.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5221.yml diff --git a/html/changelogs/AutoChangeLog-pr-5221.yml b/html/changelogs/AutoChangeLog-pr-5221.yml new file mode 100644 index 00000000000..06616c5f8ab --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5221.yml @@ -0,0 +1,6 @@ +author: "OrbisAnima" +delete-after: True +changes: + - balance: "Bitrunning Domains now give double points" + - qol: "Pizza Delivery for bitrunners now include the new Sausage pizza on their possible sponsors!" + - balance: "Bitrunner disks are now small sized, from normal." \ No newline at end of file From 8688d9c0c88c211dd31f943155173763ab6ba3dd Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 12 Dec 2024 18:59:26 +0300 Subject: [PATCH 13/91] [MIRROR] Snowglobe - Disposals Stacker (#5224) * Snowglobe - Disposals Stacker (#4606) * disposals gets a stacker * i forgot * [MIRROR] Snowglobe - Disposals Stacker --------- Co-authored-by: sqn Co-authored-by: StealsThePRs --- _maps/map_files/Snowglobe/snowglobe.dmm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/_maps/map_files/Snowglobe/snowglobe.dmm b/_maps/map_files/Snowglobe/snowglobe.dmm index 3201be1d313..4dd9162ce0e 100644 --- a/_maps/map_files/Snowglobe/snowglobe.dmm +++ b/_maps/map_files/Snowglobe/snowglobe.dmm @@ -813,6 +813,9 @@ "ajP" = ( /obj/effect/mapping_helpers/broken_floor, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 32 + }, /turf/open/floor/plating, /area/station/maintenance/disposal) "aka" = ( @@ -58601,10 +58604,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/service/chapel) -"pIK" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/closed/wall/r_wall, -/area/station/science/lab) "pIL" = ( /obj/effect/turf_decal/tile/dark_green{ dir = 1 @@ -63145,7 +63144,9 @@ /area/station/service/library) "qXv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/machinery/mineral/stacking_machine{ + input_dir = 1 + }, /turf/open/floor/plating, /area/station/maintenance/disposal) "qXH" = ( @@ -267962,7 +267963,7 @@ xOk vYw sgG uSv -pIK +uSv uSv uSv uSv From ee4a40cb5d6f075bd5ec29bb9b9ad81fca03531f Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 12 Dec 2024 18:59:39 +0300 Subject: [PATCH 14/91] [MIRROR] Railgun PKAs can no longer be fired on-station (#5225) * Railgun PKAs can no longer be fired on-station (#4553) * Update kinetic_accelerator.dm * Update firing_pin.dm * [MIRROR] Railgun PKAs can no longer be fired on-station --------- Co-authored-by: Hardly3D <66234359+Hardly3D@users.noreply.github.com> Co-authored-by: StealsThePRs --- modular_nova/modules/mining_pka/code/firing_pin.dm | 1 + modular_nova/modules/mining_pka/code/kinetic_accelerator.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modular_nova/modules/mining_pka/code/firing_pin.dm b/modular_nova/modules/mining_pka/code/firing_pin.dm index 161976298e8..b539a39b3a5 100644 --- a/modular_nova/modules/mining_pka/code/firing_pin.dm +++ b/modular_nova/modules/mining_pka/code/firing_pin.dm @@ -5,6 +5,7 @@ pin_hot_swappable = FALSE pin_removable = FALSE var/list/wastes = list( + /area/forestplanet/outdoors/unexplored, /area/icemoon/surface/outdoors, /area/icemoon/underground/unexplored, /area/icemoon/underground/explored, diff --git a/modular_nova/modules/mining_pka/code/kinetic_accelerator.dm b/modular_nova/modules/mining_pka/code/kinetic_accelerator.dm index a75d11acce6..47597893c16 100644 --- a/modular_nova/modules/mining_pka/code/kinetic_accelerator.dm +++ b/modular_nova/modules/mining_pka/code/kinetic_accelerator.dm @@ -39,10 +39,11 @@ base_icon_state = "kineticrailgun" inhand_icon_state = "kineticgun" w_class = WEIGHT_CLASS_HUGE + pin = /obj/item/firing_pin/wastes recharge_time = 3 SECONDS ammo_type = list(/obj/item/ammo_casing/energy/kinetic/railgun) weapon_weight = WEAPON_HEAVY - max_mod_capacity = 0 + max_mod_capacity = 0 recoil = 3 trigger_guard = TRIGGER_GUARD_ALLOW_ALL From 4dce39f2e232a73a71b7dc2d8fb08b951dd1f0fc Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:00:08 +0300 Subject: [PATCH 15/91] Automatic changelog for PR #5224 [ci skip] --- html/changelogs/AutoChangeLog-pr-5224.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5224.yml diff --git a/html/changelogs/AutoChangeLog-pr-5224.yml b/html/changelogs/AutoChangeLog-pr-5224.yml new file mode 100644 index 00000000000..170798989d6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5224.yml @@ -0,0 +1,4 @@ +author: "sqnztb" +delete-after: True +changes: + - map: "Snowglobe - added stacking machine to disposals." \ No newline at end of file From 5698ca9fc45d275ba9610bd473d4f805d2bbe5f6 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:00:10 +0300 Subject: [PATCH 16/91] Automatic changelog for PR #5225 [ci skip] --- html/changelogs/AutoChangeLog-pr-5225.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5225.yml diff --git a/html/changelogs/AutoChangeLog-pr-5225.yml b/html/changelogs/AutoChangeLog-pr-5225.yml new file mode 100644 index 00000000000..855160d4c4c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5225.yml @@ -0,0 +1,5 @@ +author: "Hardly" +delete-after: True +changes: + - balance: "Railgun PKAs can no longer be fired on station" + - code_imp: "Allows restricted PKAs to be fired in Serenity exterior" \ No newline at end of file From 0a7c4a9afc51bf111dce9cb0c4cbba415abb3e82 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:17:16 +0300 Subject: [PATCH 17/91] [MIRROR] Tweaks to Bitrunning SNPC spawners (and some other things) (but without TGS DMAPI) (#5223) * Tweaks to Bitrunning SNPC spawners (and some other things) (but without TGS DMAPI) (#4615) * recap * Update tgstation.dme * Oh I forgot about that --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] Tweaks to Bitrunning SNPC spawners (and some other things) (but without TGS DMAPI) --------- Co-authored-by: Stalkeros <42087567+Stalkeros2@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs Co-authored-by: Iajret --- modular_nova/modules/bitrunning/code/disks.dm | 44 ++++++++++++++++- .../modules/bitrunning/code/ghost_spawner.dm | 48 +++++++++++++++++++ .../virtual_domains/ancient_milsim/mod.dm | 14 ++++-- tgstation.dme | 1 + 4 files changed, 101 insertions(+), 6 deletions(-) create mode 100644 modular_nova/modules/bitrunning/code/ghost_spawner.dm diff --git a/modular_nova/modules/bitrunning/code/disks.dm b/modular_nova/modules/bitrunning/code/disks.dm index 8996ac61a4c..5d350a941e9 100644 --- a/modular_nova/modules/bitrunning/code/disks.dm +++ b/modular_nova/modules/bitrunning/code/disks.dm @@ -77,6 +77,37 @@ item_path = /obj/item/bitrunning_disk/item/tier0 desc = "This disk contains a program that lets you equip a pair of binoculars, thirty marker beacons, a snack rig, a D20, a stabilizer pouch, or an empty colonial first-aid pouch." +/obj/item/bitrunning_disk/item/tierlewd + name = "bitrunning gear: relaxation" + selectable_items = list( + /obj/item/summon_beacon/lustwish, + /obj/item/storage/box/nif_ghost_box, + ) + +/obj/item/summon_beacon/lustwish + name = "relaxation machine beacon" + icon_state = "sb_delivery" + desc = "Once a vending machine is selected, delivers it to the target location." + + allowed_areas = list( + /area/virtual_domain, + ) + + selectable_atoms = list( + /obj/machinery/vending/dorms/bitrunning, + ) + + area_string = "virtual domains" + supply_pod_stay = FALSE + +/obj/machinery/vending/dorms/bitrunning + all_products_free = TRUE + +/datum/orderable_item/bitrunning_tech/item_tierlewd + cost_per_order = 250 + item_path = /obj/item/bitrunning_disk/item/tierlewd + desc = "This disk contains a program that lets you equip a LustWish vending machine delivery beacon or a quick-booting NIF package." + /obj/item/bitrunning_disk/item/tier1/Initialize(mapload) . = ..() selectable_items += list( @@ -104,7 +135,7 @@ selectable_items += list( /obj/item/autosurgeon/syndicate/nodrop, /obj/item/gun/energy/modular_laser_rifle, - /obj/item/gun/energy/laser/thermal, + /obj/item/storage/belt/holster/energy/nanite, /obj/item/minigunpack, ) @@ -132,6 +163,15 @@ /datum/action/cooldown/spell/death_loop, ) +/obj/item/storage/belt/holster/energy/nanite + name = "nanite pistol shoulder holsters" + desc = "A rather plain pair of shoulder holsters with a bit of padding inside. Meant to hold a twinned pair of nanite pistols, but can fit several kinds of energy handguns as well." + +/obj/item/storage/belt/holster/energy/nanite/PopulateContents() + generate_items_inside(list( + /obj/item/gun/energy/laser/thermal = 2, + ),src) + /datum/orderable_item/bitrunning_tech/item_tier1 desc = "This disk contains a program that lets you equip a medical beamgun, a C4 explosive, a box of infinite pizza, or a military webbing." @@ -139,7 +179,7 @@ desc = "This disk contains a program that lets you equip a luxury medipen, a pistol case, an armour vest, a helmet, an energy sword, an expeditionary medkit, or a hacker implant." /datum/orderable_item/bitrunning_tech/item_tier3 - desc = "This disk contains a program that lets you equip a Hyeseong laser rifle, a laser minigun pack, a nanite pistol, a dual bladed energy sword, a minibomb, or an anti-drop implanter." + desc = "This disk contains a program that lets you equip a Hyeseong laser rifle, a laser minigun pack, a nanite pistol holster, a dual bladed energy sword, a minibomb, or an anti-drop implanter." /datum/orderable_item/bitrunning_tech/ability_tier1 desc = "This disk contains a program that lets you cast Summon Cheese, Summon Light Source, Lesser Heal, or Mending Touch." diff --git a/modular_nova/modules/bitrunning/code/ghost_spawner.dm b/modular_nova/modules/bitrunning/code/ghost_spawner.dm new file mode 100644 index 00000000000..e0c9a57f6e8 --- /dev/null +++ b/modular_nova/modules/bitrunning/code/ghost_spawner.dm @@ -0,0 +1,48 @@ +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/islander + random_appearance = FALSE + +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/pirate + mob_species = /datum/species/skeleton + +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie + random_appearance = FALSE + +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie/proc/apply_syndiename(mob/living/carbon/human/spawned_human) + var/bitrunning_alias = spawned_human.client?.prefs?.read_preference(/datum/preference/name/hacker_alias) || pick(GLOB.hacker_aliases) + spawned_human.fully_replace_character_name(spawned_human.real_name, "[bitrunning_alias]") + +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie/special(mob/living/carbon/human/spawned_human) + . = ..() + apply_syndiename(spawned_human) + +/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie/post_transfer_prefs(mob/living/carbon/human/spawned_human) + . = ..() + apply_syndiename(spawned_human) + +/datum/outfit/virtual_pirate/post_equip(mob/living/carbon/human/user, visualsOnly) + . = ..() + user.faction |= FACTION_PIRATE + // make sure we update the ID's name too + var/obj/item/card/id/id_card = user.wear_id + if(istype(id_card)) + id_card.registered_name = user.real_name + id_card.update_label() + +/datum/outfit/virtual_syndicate + ears = /obj/item/radio/headset/cybersun + +/datum/outfit/virtual_syndicate/post_equip(mob/living/carbon/human/user, visualsOnly) + . = ..() + // make sure we update the ID's name too + var/obj/item/card/id/id_card = user.wear_id + if(istype(id_card)) + id_card.registered_name = user.real_name + id_card.update_label() + +/datum/outfit/beachbum_combat/post_equip(mob/living/carbon/human/bum, visualsOnly) + . = ..() + // make sure we update the ID's name too + var/obj/item/card/id/id_card = bum.wear_id + if(istype(id_card)) + id_card.registered_name = bum.real_name + id_card.update_label() diff --git a/modular_nova/modules/bitrunning/code/virtual_domains/ancient_milsim/mod.dm b/modular_nova/modules/bitrunning/code/virtual_domains/ancient_milsim/mod.dm index c83d5628c19..8cda7812445 100644 --- a/modular_nova/modules/bitrunning/code/virtual_domains/ancient_milsim/mod.dm +++ b/modular_nova/modules/bitrunning/code/virtual_domains/ancient_milsim/mod.dm @@ -49,14 +49,16 @@ /obj/item/mod/module/magnetic_harness, /obj/item/mod/module/status_readout/operational, /obj/item/mod/module/jetpack, + /obj/item/mod/module/active_sonar, /obj/item/mod/module/visor/night, ) default_pins = list( /obj/item/mod/module/jetpack, + /obj/item/mod/module/active_sonar, /obj/item/mod/module/visor/night, ) insignia_type = /obj/item/mod/module/insignia/security - additional_module = /obj/item/mod/module/stealth/ancient_milsim + additional_module = /obj/item/mod/module/dispenser/throwing_knife /obj/item/mod/control/pre_equipped/responsory/milsim_medic theme = /datum/mod_theme/responsory/ancient_milsim @@ -77,9 +79,6 @@ insignia_type = /obj/item/mod/module/insignia/medic additional_module = /obj/item/mod/module/dispenser/hypospray -/obj/item/mod/module/stealth/ancient_milsim - removable = FALSE - /obj/item/mod/module/dispenser/emp name = "MOD EMP grenade dispenser module" desc = "This module can create activated EMP grenades at the user's liking." @@ -100,6 +99,13 @@ cooldown_time = 10 SECONDS dispense_type = /obj/item/minespawner/ancient_milsim +/obj/item/mod/module/dispenser/throwing_knife + name = "MOD throwing knife dispenser module" + desc = "This module can create throwing knives at the user's liking." + removable = FALSE + cooldown_time = 5 SECONDS + dispense_type = /obj/item/knife/combat/throwing + /obj/item/mod/module/dispenser/hypospray name = "MOD custom hypospray dispenser module" desc = "This module can create a single combat hypospray and additional cartridges at the user's liking." diff --git a/tgstation.dme b/tgstation.dme index 759691794ea..12dd14df120 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -7183,6 +7183,7 @@ #include "modular_nova\modules\better_vox\code\vox_sprite_accessories.dm" #include "modular_nova\modules\bitrunning\code\disks.dm" #include "modular_nova\modules\bitrunning\code\flair.dm" +#include "modular_nova\modules\bitrunning\code\ghost_spawner.dm" #include "modular_nova\modules\bitrunning\code\loot.dm" #include "modular_nova\modules\bitrunning\code\mobs.dm" #include "modular_nova\modules\bitrunning\code\outfit.dm" From bc9b76310b9093f3bcd1bbee98571cd6a451a1a4 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:18:09 +0300 Subject: [PATCH 18/91] Automatic changelog for PR #5223 [ci skip] --- html/changelogs/AutoChangeLog-pr-5223.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5223.yml diff --git a/html/changelogs/AutoChangeLog-pr-5223.yml b/html/changelogs/AutoChangeLog-pr-5223.yml new file mode 100644 index 00000000000..16d64ab4259 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5223.yml @@ -0,0 +1,7 @@ +author: "Stalkeros" +delete-after: True +changes: + - rscadd: "New bitrunning disk, allowing you to either install a single-use NIF, or summon a Very Interesting Vending Machine." + - rscadd: "MilSim DLC disk's Marksman was granted infinite supplies of throwing knives and a sonar at the cost of invisibility." + - qol: "You can now join as your own character in the Syndicate Assault and Island Brawl domains." + - bugfix: "Names should show up on Syndicate Assault, Pirate Cove, and Island Brawl IDs once again." \ No newline at end of file From 49d792710329bde7ac86ad070943f91408188987 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:45:32 +0300 Subject: [PATCH 19/91] [MIRROR] Adds new station map Nebulastation (#5218) * Adds new station map Nebulastation (#4583) * Adds new station map Nebulastation (#84826) ## About The Pull Request Adds a completely brand new multi-z station map "NebulaStation". New areas and few exclusive map shuttles (ferry, mining, arrival, evac, cargo) Few example screenshots ![StrongDMM-2024-07-19 20 53 15](https://github.com/user-attachments/assets/e895bae6-f3e7-4ee4-9779-96266e943db0) ![StrongDMM-2024-07-19 20 51 41](https://github.com/user-attachments/assets/43bb1443-1c2c-4c4e-8f0c-b743866c84fa) ![image](https://github.com/tgstation/tgstation/assets/143291881/4bdfa1d7-ba84-408b-a4ff-9fa0dd3a2783) ![image](https://github.com/tgstation/tgstation/assets/143291881/6caa71cc-92f2-49ff-b05c-76e091b5b05b) ![image](https://github.com/tgstation/tgstation/assets/143291881/c64ac863-9287-4827-9168-ea9a55f66a9e) ![image](https://github.com/tgstation/tgstation/assets/143291881/dff66e71-89a0-4da7-94f5-07774c239047) And more... ## Why It's Good For The Game New maps are always good for the game ## Changelog :cl: Kiko add: Nebulastation, new station map /:cl: * initial automapper commit * tiny fix, woops. * linter. * thank you ci * anti-hotwire --------- Co-authored-by: Kiko Wen <143291881+KikoWen0@users.noreply.github.com> Co-authored-by: sqn * [MIRROR] Adds new station map Nebulastation * Update dance_machine.dm --------- Co-authored-by: Zergspower <22140677+Zergspower@users.noreply.github.com> Co-authored-by: Kiko Wen <143291881+KikoWen0@users.noreply.github.com> Co-authored-by: sqn Co-authored-by: StealsThePRs Co-authored-by: Iajret --- _maps/_basemap.dm | 1 + .../map_files/NebulaStation/NebulaStation.dmm | 294141 +++++++++++++++ _maps/nebulastation.json | 23 + _maps/nova/automapper/automapper_config.toml | 56 + .../nebulastation/nebulastation_armory.dmm | 175 + .../nebulastation/nebulastation_arrivals.dmm | 252 + .../nebulastation/nebulastation_barber.dmm | 490 + .../nebulastation/nebulastation_cryo.dmm | 229 + .../nebulastation_no_hotwire.dmm | 17 + .../nebulastation_ntrep_office.dmm | 535 + .../nebulastation_supermatter.dmm | 99 + _maps/shuttles/arrival_nebula.dmm | 452 + _maps/shuttles/cargo_nebula.dmm | 333 + _maps/shuttles/emergency_nebula.dmm | 3201 + _maps/shuttles/ferry_nebula.dmm | 365 + _maps/shuttles/labour_nebula.dmm | 405 + _maps/shuttles/mining_nebula.dmm | 445 + code/datums/shuttles/arrival.dm | 4 + code/datums/shuttles/cargo.dm | 4 + code/datums/shuttles/emergency.dm | 8 + code/datums/shuttles/ferry.dm | 10 + code/datums/shuttles/mining.dm | 8 + code/game/area/areas/station/cargo.dm | 12 + code/game/area/areas/station/common.dm | 16 + code/game/area/areas/station/engineering.dm | 5 + code/game/area/areas/station/medical.dm | 4 + code/game/area/areas/station/security.dm | 4 + code/game/area/areas/station/service.dm | 15 +- code/modules/mining/laborcamp/laborshuttle.dm | 3 + code/modules/mining/mine_items.dm | 4 + config/maps.txt | 5 + icons/area/areas_station.dmi | Bin 46276 -> 45884 bytes .../modules/bar_jukebox/code/dance_machine.dm | 3 +- 33 files changed, 301322 insertions(+), 2 deletions(-) create mode 100644 _maps/map_files/NebulaStation/NebulaStation.dmm create mode 100644 _maps/nebulastation.json create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_armory.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_arrivals.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_barber.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_cryo.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_no_hotwire.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_ntrep_office.dmm create mode 100644 _maps/nova/automapper/templates/nebulastation/nebulastation_supermatter.dmm create mode 100644 _maps/shuttles/arrival_nebula.dmm create mode 100644 _maps/shuttles/cargo_nebula.dmm create mode 100644 _maps/shuttles/emergency_nebula.dmm create mode 100644 _maps/shuttles/ferry_nebula.dmm create mode 100644 _maps/shuttles/labour_nebula.dmm create mode 100644 _maps/shuttles/mining_nebula.dmm diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm index 176b366f2d3..d4636893bb1 100644 --- a/_maps/_basemap.dm +++ b/_maps/_basemap.dm @@ -13,6 +13,7 @@ #include "map_files\Mining\Lavaland.dmm" #include "map_files\NorthStar\north_star.dmm" #include "map_files\tramstation\tramstation.dmm" + #include "map_files\NebulaStation\NebulaStation.dmm" #include "map_files\wawastation\wawastation.dmm" // NOVA EDIT ADDITON START - Compiling our modular maps too! #include "map_files\VoidRaptor\VoidRaptor.dmm" diff --git a/_maps/map_files/NebulaStation/NebulaStation.dmm b/_maps/map_files/NebulaStation/NebulaStation.dmm new file mode 100644 index 00000000000..31077a0c5ca --- /dev/null +++ b/_maps/map_files/NebulaStation/NebulaStation.dmm @@ -0,0 +1,294141 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aab" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"aaf" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"aah" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aai" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 32 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"aan" = ( +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"aar" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/sink/kitchen/directional/east, +/obj/structure/mirror/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"aat" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"aaw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/greater) +"aax" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"aaC" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Project Room" + }, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"aaD" = ( +/obj/machinery/light/directional/north, +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"aaF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"aaH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"aaP" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot_white, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"aba" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/lockers) +"abf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#5d341f" + }, +/area/station/service/library) +"abg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"abz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"abD" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"abE" = ( +/obj/item/pickaxe, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"abI" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"abJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/stool/directional/north, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison/visit) +"abK" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"abL" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"abQ" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"abU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"aca" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/folder, +/obj/item/pen, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/server) +"acb" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"acm" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/west, +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/theater) +"acG" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"acK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "gulagdoor"; + name = "Security Transferring Center" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"acM" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4 + }, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"acP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"acT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"acU" = ( +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"acW" = ( +/obj/machinery/light/floor, +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/snow/style_6, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile/icy/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"adb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"adg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"adj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"adl" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"adn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"adp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/item/clothing/head/utility/hardhat/welding, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"adt" = ( +/obj/machinery/defibrillator_mount/directional/south, +/obj/structure/table/glass, +/obj/item/surgery_tray/full, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/medical/surgery/theatre) +"adH" = ( +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/cup/bottle/chloralhydrate, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/bottle/morphine{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/cup/bottle/facid{ + name = "fluorosulfuric acid bottle"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"adN" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/radiation, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"adV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"aea" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"aeb" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/structure/sign/departments/medbay/alt/directional/south, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"aec" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aef" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/photo/old{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"aeq" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/machinery/button/door/directional/west{ + name = "CMO Surgery Privacy Shutters"; + id = "cmoprivacy2"; + req_access = list("cmo") + }, +/obj/item/surgery_tray/full, +/turf/open/floor/iron/white/herringbone, +/area/station/command/heads_quarters/cmo) +"aer" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 18; + pixel_x = 5 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aes" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"aet" = ( +/turf/closed/wall, +/area/station/service/kitchen) +"aez" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/end{ + dir = 8 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"aeC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"aeD" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aeG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"aeH" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"aeM" = ( +/turf/closed/wall/r_wall, +/area/station/command/corporate_suite) +"aeU" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"afb" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/storage) +"afe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"aff" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"afn" = ( +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/north, +/obj/item/trash/candle, +/obj/item/flashlight/flare/candle{ + pixel_x = -7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"aft" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/project) +"afx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"afz" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"afC" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/turf/open/openspace, +/area/station/service/chapel/funeral) +"afI" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) +"afJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"afN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/hedge, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"afP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Overseer's Desk Access" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"afT" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/interdyne_gene_clinics/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/genetics) +"afU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"agg" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/sign/poster/official/moth_delam/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"agj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid3" + }, +/area/space/nearstation) +"agk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"agm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"agn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/department/security) +"agv" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/parquet, +/area/station/maintenance/starboard/central) +"agA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"agD" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"agH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"agJ" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"agP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/disposal/bin, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"agQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"agR" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"agS" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/service) +"agX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/main) +"ahi" = ( +/obj/structure/flora/rock/pile/style_2, +/mob/living/basic/cow, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"ahk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/test_chamber/directional/north, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"ahm" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/chair/plastic, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"ahp" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"ahu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/machinery/microwave, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/command/corporate_suite) +"ahD" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"ahG" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"ahU" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"ahZ" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"aid" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aih" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/storage) +"ail" = ( +/obj/machinery/newscaster, +/turf/closed/wall, +/area/station/cargo/miningoffice) +"aiq" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"aiw" = ( +/obj/structure/table/glass, +/obj/structure/sign/poster/official/help_others/directional/north, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/brute, +/obj/item/storage/medkit/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/left/directional/south{ + name = "First-Aid Supplies"; + req_access = list("medical") + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"aiy" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/science/genetics) +"aiH" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"aiK" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/end, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/right/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/break_room) +"aiL" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"aiM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/lobby) +"aiO" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aiY" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/science/genetics) +"ajd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/chapel/funeral) +"aje" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aji" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ajk" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 9; + height = 25; + name = "Nebulastation emergency evac bay"; + shuttle_id = "emergency_home"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"ajq" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/iron/white, +/area/station/science/research) +"ajx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ajz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"ajA" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"ajC" = ( +/turf/closed/wall, +/area/station/maintenance/port/central) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"ajG" = ( +/turf/closed/wall/r_wall, +/area/station/tcommsat/computer) +"ajQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library) +"ajR" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"ajU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/clothing/head/cone, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ajW" = ( +/obj/effect/turf_decal/trimline/green, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"akg" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"akj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"akl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"akm" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/ladder, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"akp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"akr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"akB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"akE" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"akH" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/machinery/incident_display/delam/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"akT" = ( +/obj/structure/sign/warning/directional/south, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal) +"akU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"akV" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"ald" = ( +/obj/structure/chair/stool/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"alf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/range) +"aln" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"alo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"alF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"alH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"alL" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"alP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"alS" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"alT" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"ama" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/medical) +"amg" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"amj" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"amo" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"amy" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"amD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Mix" + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"amE" = ( +/obj/structure/hedge, +/obj/structure/sign/painting/large/library{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"amG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/vending/clothing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/ue_no/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"amL" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"amO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"amP" = ( +/obj/effect/turf_decal/siding/dark/end, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/green, +/obj/effect/turf_decal/trimline/green, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/item/weldingtool, +/obj/item/clothing/head/utility/welding, +/obj/item/clothing/glasses/welding, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"amQ" = ( +/obj/structure/statue/sandstone/venus{ + dir = 4; + anchored = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"amS" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"amT" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"amU" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"anh" = ( +/obj/effect/turf_decal/siding, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"ani" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/bot/left, +/obj/effect/turf_decal/trimline/purple, +/obj/item/toy/figure/janitor{ + pixel_y = 17; + pixel_x = -5 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"anq" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ans" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"anu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"anv" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"anE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"anI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"anN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"anR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"anT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"anU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"anV" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/sign/warning/rad_shelter/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"anW" = ( +/turf/closed/wall, +/area/station/science/research) +"anZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/holding_cell) +"aoa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"aod" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"aoh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/modular_computer/preset/civilian{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aoj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/north, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/bookcase/random, +/obj/item/clothing/head/cowboy{ + pixel_y = 16 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"aon" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"aop" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aoq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"aor" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"aot" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/lower) +"aou" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"aoK" = ( +/obj/structure/cable/layer3, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"aoQ" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/port) +"aoW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/holding_cell) +"aoX" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/machinery/light/directional/north, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"apa" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"api" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"apm" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"apv" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"apx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname/directional/west{ + network = list("minisat") + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"apz" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command) +"apE" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/medical/morgue) +"apH" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/grass, +/area/station/science/cytology) +"apI" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/execution/transfer) +"apJ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"apN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "bar_counter"; + name = "Bar Counter Shutters" + }, +/obj/effect/spawner/random/entertainment/lighter, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"apQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"apS" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"apU" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"aqb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"aqd" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"aqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/caution_sign, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"aqk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aqs" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant12, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"aqt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aqH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"aqL" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aqQ" = ( +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"aqS" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Mini-Bar" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/minibar) +"aqT" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) +"aqX" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"aqZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"arc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/directions/medical/directional/east{ + pixel_y = 8; + dir = 1 + }, +/obj/structure/sign/directions/science/directional/east{ + dir = 1 + }, +/obj/structure/sign/directions/supply/directional/east{ + pixel_y = -8; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"arn" = ( +/obj/structure/fireplace, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/wideplating/dark/end, +/turf/open/floor/stone, +/area/station/command/corporate_suite) +"arv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"arO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"asd" = ( +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"asj" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"asl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"asq" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"ast" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"asv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"asy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"asC" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/breakroom) +"asM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/clipboard{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/folder/yellow{ + pixel_y = 2 + }, +/obj/item/pen/fountain{ + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = 15 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"asN" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"asQ" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"asR" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"asT" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"asY" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ati" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/style_3, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"atl" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - Mix" + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"atm" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central) +"ato" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"ats" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"atu" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + desc = "A handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "radio"; + pixel_x = 1; + pixel_y = 14 + }, +/obj/item/radio/weather_monitor{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"atz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"atG" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/jungle/c/style_3, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"atJ" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"atL" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"atM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"atR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/office) +"atW" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/machinery/conveyor{ + dir = 4; + id = "janigarbage" + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/janitor) +"aua" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"aub" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"auc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"aug" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"auh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"aui" = ( +/obj/item/clothing/accessory/dogtag, +/obj/structure/table/glass, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"auj" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/pen, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"aup" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) +"auq" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"auv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"aux" = ( +/obj/structure/broken_flooring/side/always_floorplane/directional/east, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/departments/xenobio/directional/north, +/obj/structure/sign/xenobio_guide/directional/west, +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"auE" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command) +"auH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"auI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"auJ" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"auK" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/prison) +"auO" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"auV" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"auW" = ( +/turf/closed/wall, +/area/station/hallway/secondary/service) +"avd" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"avf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"avl" = ( +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/bench/solo, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"avm" = ( +/obj/structure/chair/sofa/corp, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"avp" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/left{ + dir = 8; + color = "#3d3e42" + }, +/area/station/command) +"avu" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"avC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/clothing/mask/gas/clown_hat{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/ripped/directional/east, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"avG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/theater) +"avT" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/medical/break_room) +"awe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"awh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"awl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"awp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/table/wood, +/obj/item/paint_palette, +/obj/item/toy/crayon/spraycan{ + pixel_y = 6 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"awq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/security/courtroom) +"aww" = ( +/turf/open/floor/engine, +/area/station/science/xenobiology) +"awC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"awI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"awW" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"awX" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"awZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/service/theater) +"axc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"axk" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/obj/item/electronics/airalarm{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/electronics/firealarm{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/electronics/airalarm{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/electronics/firealarm{ + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/official/build/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"axl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"axp" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/effect/turf_decal/bot_white, +/obj/machinery/requests_console/auto_name/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"axv" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"axB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"axD" = ( +/obj/structure/table/reinforced, +/obj/item/food/cakeslice/apple{ + pixel_y = 1; + pixel_x = 15 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/muffin/berry{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"axF" = ( +/turf/open/openspace, +/area/station/medical/cryo) +"axH" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/structure/sign/departments/medbay/alt/directional/west, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/medical/storage) +"axI" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/item/wallframe/newscaster, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"axM" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/station/medical/office) +"axS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/no_nightlight/directional/west, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"axW" = ( +/turf/open/floor/iron/white/textured_edge{ + dir = 1 + }, +/area/station/medical/surgery/theatre) +"ayg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"ayi" = ( +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ayj" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aym" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/station/security/lockers) +"ayo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"ayt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"ayE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/engine_safety/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"ayG" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/bartender, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar/backroom) +"ayH" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"ayQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"ayS" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"ayU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"azh" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"azk" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"azm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"azo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/fore) +"azw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"azD" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/execution/education) +"azE" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 4 + }, +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/security/prison/workout) +"azF" = ( +/turf/open/floor/iron/stairs/medium, +/area/station/command/gateway) +"azK" = ( +/obj/structure/railing, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/decal/cleanable/confetti, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/recharge_station, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"azP" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/secure, +/turf/open/floor/iron/dark, +/area/station/command) +"azX" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"azY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/structure/sign/poster/official/help_others/directional/north, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"azZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"aAf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"aAj" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"aAp" = ( +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"aAq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"aAr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"aAt" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"aAC" = ( +/obj/machinery/shower/directional/north, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"aAE" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/science) +"aAI" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aAJ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"aAN" = ( +/obj/machinery/door/airlock/grunge{ + name = "Vacant Office" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/vacant_room/office) +"aAO" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/command) +"aAU" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"aBa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"aBc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/station/maintenance/central) +"aBd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aBf" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"aBk" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"aBn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"aBt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/comfy{ + color = "#514e58" + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"aBw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"aBG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/obj/structure/sign/warning/vacuum/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"aBH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aBL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"aBP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/machinery/mining_weather_monitor/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"aBQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aBZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/machinery/hydroponics/constructable, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("prison") + }, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"aCa" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"aCg" = ( +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"aCj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro Staging to Distro" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"aCl" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aCm" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/always_floorplane/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aCr" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"aCv" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/courtroom/holding) +"aCE" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aCJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"aCO" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"aCX" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/structure/sign/poster/contraband/space_cola/directional/north, +/obj/item/flashlight/flare/candle{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"aDc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aDj" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/vending/autodrobe, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"aDk" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"aDo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"aDq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"aDG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/machinery/light/floor, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"aDT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aDU" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/white, +/area/station/science/lower) +"aDZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"aEb" = ( +/obj/structure/cable, +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/item/cigbutt{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"aEd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aEg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/brig) +"aEh" = ( +/obj/machinery/door/airlock/grunge{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"aEj" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/service/kitchen) +"aEn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/fore/lesser) +"aEo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"aEt" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"aEw" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"aEz" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"aEB" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/processing) +"aEC" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics) +"aED" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aEI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"aEN" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/radio/intercom/prison/directional/north, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"aEV" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/tape, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"aFa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/analyzer, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"aFf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"aFg" = ( +/obj/structure/rack, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"aFh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"aFm" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Departure Lounge Security Post"; + req_access = list("security") + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"aFp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bamboo{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/small/dim/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"aFA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/style_3, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aFB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"aFM" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/navbeacon{ + location = "C3-Aft-Central-Fw"; + codes_txt = "patrol;next_patrol=A1-Aft-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"aFN" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"aFX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aGa" = ( +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aGe" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"aGh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aGm" = ( +/turf/closed/wall, +/area/station/cargo/storage) +"aGp" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"aGv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/maintenance/starboard/central) +"aGw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/mechbay) +"aGz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/broken_flooring/singular{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"aGB" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"aGH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"aGI" = ( +/obj/structure/flora/bush/jungle/a/style_2, +/obj/structure/flora/bush/stalky/style_random, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"aGQ" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/medical/lower) +"aGT" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/storage/box, +/obj/effect/spawner/random/bureaucracy/birthday_wrap, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"aHc" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/hedge, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/funeral) +"aHq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"aHy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"aHK" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"aHN" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/donk_co/directional/north, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aHQ" = ( +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/directional/north{ + department = "Chief Engineer's Desk"; + name = "Chief Engineer's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/machinery/cell_charger, +/obj/item/rcl/pre_loaded, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/structure/table/reinforced/rglass, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"aHR" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"aHT" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr"; + dir = 4 + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"aHU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/sorting) +"aHX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"aHZ" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/aft/greater) +"aIc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"aIe" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"aIg" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"aIl" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"aIo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box/red, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"aIr" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port) +"aIC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot/left, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/box/flashbangs{ + pixel_x = 3 + }, +/obj/item/storage/box/teargas{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/gun/grenadelauncher, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"aID" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/security/courtroom/holding) +"aIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"aIG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/sofa/bench/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"aII" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/service/chapel/funeral) +"aIL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage) +"aIO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"aIZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/structure/sign/warning/pods/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"aJf" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"aJj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"aJp" = ( +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"aJC" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aJD" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"aJE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/maintenance/department/bridge) +"aJF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"aJK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"aJO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"aJV" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"aJZ" = ( +/obj/structure/railing, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"aKf" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"aKj" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"aKm" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"aKq" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter"; + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"aKr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aKA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/science/ordnance) +"aKB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/library) +"aKK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/commons/dorms) +"aKN" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Coroner's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/coroner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"aKP" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"aKQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"aKX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"aKY" = ( +/obj/structure/fence, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aLd" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aLg" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/fore) +"aLj" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"aLk" = ( +/obj/structure/railing/corner/end{ + dir = 4; + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"aLn" = ( +/obj/structure/table/reinforced, +/obj/item/screwdriver{ + pixel_y = 7 + }, +/obj/item/screwdriver{ + pixel_y = 12 + }, +/obj/item/wirecutters, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"aLt" = ( +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"aLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/side/directional/west{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"aLw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"aLy" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"aLD" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"aLH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"aLK" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"aLS" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/railing/corner, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"aLT" = ( +/obj/structure/noticeboard/ce{ + pixel_y = -26 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"aLU" = ( +/obj/structure/table/reinforced, +/obj/item/inspector{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/inspector, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"aLV" = ( +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"aLW" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/biohazard/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"aLX" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"aMa" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/mop, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"aMd" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"aMg" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"aMk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"aMt" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"aMv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"aML" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"aMO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"aMS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"aMT" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"aMX" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/shower/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 1 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"aMZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"aNh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aNj" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"aNm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood/poker, +/obj/item/storage/dice, +/obj/item/cigarette/pipe{ + pixel_x = 17; + pixel_y = 2 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"aNq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aNx" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"aNz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/security) +"aNF" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aNG" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"aNP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"aNV" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"aNW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aOa" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + name = "Pool Shutters Control"; + id = "Pool" + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"aOe" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/tank_holder/oxygen/yellow, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"aOh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"aOs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 4; + pixel_x = -13 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"aOt" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"aOB" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/reagent_containers/cup/bucket/wooden{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/holofloor/wood, +/area/station/ai_monitored/aisat/exterior) +"aOZ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"aPb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"aPh" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"aPi" = ( +/obj/structure/sign/departments/chemistry/pharmacy/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"aPm" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/port) +"aPs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/spawner/random/structure/table_fancy, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_y = 16 + }, +/obj/item/food/grown/grapes{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"aPu" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"aPA" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aPC" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aPF" = ( +/obj/machinery/door/airlock/mining/glass{ + id_tag = "cargooffice"; + name = "Cargo Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"aPW" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aPZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"aQb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"aQf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"aQo" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/medical/lower) +"aQG" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"aQI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"aQN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/south{ + name = "Cargo Trade Desk"; + req_access = list("shipping") + }, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"aQS" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/fore/lesser) +"aQT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Project Room" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"aQY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cold Loop to Gas" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"aRa" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/security/prison) +"aRb" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/cups, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"aRg" = ( +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = -3; + pixel_x = -1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/side/directional/north{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"aRj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"aRm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aRr" = ( +/obj/machinery/computer/rdservercontrol, +/obj/machinery/airalarm/directional/north, +/obj/structure/sign/poster/official/science/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/server) +"aRy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theater Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/turf/open/floor/plating, +/area/station/maintenance/port) +"aRz" = ( +/obj/item/chair/plastic, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"aRC" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"aRE" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"aRJ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aRW" = ( +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aRX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"aSu" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"aSx" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"aSC" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"aSJ" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/window/spawner/directional/north{ + color = "#9d1a1a" + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"aSK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"aSM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"aSR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/plate{ + pixel_y = 2 + }, +/obj/item/food/ready_donk/mac_n_cheese{ + pixel_y = 5; + plane = -7 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"aSW" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison) +"aSX" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/command) +"aTa" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"aTf" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/shower/directional/south{ + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"aTg" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"aTh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"aTk" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/ordnance/storage) +"aTs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"aTv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"aTy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"aTE" = ( +/obj/machinery/door/window/brigdoor/right/directional/east{ + req_access = list("security"); + name = "Customs Supply" + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"aTF" = ( +/obj/item/screwdriver{ + pixel_y = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"aTG" = ( +/obj/structure/stairs/north{ + color = "#5d341f" + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"aTS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"aTT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"aTZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/moisture_trap, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"aUa" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"aUf" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"aUh" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"aUq" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aUu" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/got_wood/directional/north, +/obj/item/grown/log, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"aUx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/light_switch/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"aUB" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"aUC" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"aUG" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f"; + dir = 1 + }, +/area/station/command/heads_quarters/captain) +"aUI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"aUK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"aUM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/cans/sixbeer, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aUO" = ( +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"aUQ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"aUS" = ( +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"aUV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aUY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"aVa" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1; + name = "killroom vent" + }, +/turf/open/floor/circuit, +/area/station/science/xenobiology) +"aVg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"aVk" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/port) +"aVm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"aVo" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/science, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"aVq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"aVs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"aVA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/lockers) +"aVC" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"aVD" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison) +"aVG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"aVL" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"aVX" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aWa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"aWc" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"aWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"aWl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/screwdriver{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"aWr" = ( +/obj/structure/rack, +/obj/item/toy/crayon/spraycan{ + pixel_x = -4 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"aWv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"aWz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"aWD" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"aWF" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"aWH" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"aWI" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"aWP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"aWX" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/item/book/manual/chef_recipes{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/item/book/manual/chef_recipes{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"aXa" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"aXd" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"aXk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"aXm" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"aXn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"aXs" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"aXu" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/kitchen/diner) +"aXz" = ( +/obj/structure/sign/departments/psychology/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/fore) +"aXK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aXL" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aXN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aXP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/button/door/directional/south{ + id = "Cell2"; + normaldoorcontrol = 1; + specialfunctions = 4; + name = "Cell 2 Doors Bolt Control"; + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"aXS" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/trapdoor_placer, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/security/courtroom) +"aXV" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control" + }, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"aXY" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"aYb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"aYc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"aYe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"aYh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"aYi" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"aYs" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/command) +"aYu" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"aYy" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"aYA" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"aYC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/solars/port/aft) +"aYL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"aYO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"aYS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/hallway/primary/port) +"aYX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"aZb" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"aZd" = ( +/obj/structure/chair/comfy/lime, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"aZf" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"aZj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"aZo" = ( +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"aZE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "chapel_shutters_parlour"; + name = "Chapel Shutters Control"; + pixel_x = 6; + req_access = list("chapel_office") + }, +/obj/structure/table/wood, +/obj/item/table_clock{ + pixel_y = 6 + }, +/obj/machinery/button/door/directional/south{ + id = "chaplainshutters"; + name = "Chapel Office Shutters Control"; + pixel_x = -6; + req_access = list("chapel_office") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"aZI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"aZM" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"aZQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"aZX" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"aZY" = ( +/obj/effect/turf_decal/trimline/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"bac" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"bad" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/folder/white{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/pen/fountain, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"baf" = ( +/obj/item/chair/stool, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/aft/lesser) +"baD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"baE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"baF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"baH" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door{ + desc = "A door remote control switch for the interior bridge doors."; + id = "innerbridge"; + name = "Bridge Interior Door Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 7; + req_access = list("command") + }, +/obj/machinery/button/door{ + desc = "A door remote control switch for the exterior bridge doors."; + id = "outerbridge"; + name = "Bridge Exterior Door Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 7; + req_access = list("command") + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_y = -3; + req_access = list("command") + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"baL" = ( +/obj/effect/turf_decal/trimline/tram/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/tram/mid_joiner, +/obj/machinery/door/window/right/directional/west{ + name = "Surgery Access" + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"baM" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light/directional/north, +/obj/machinery/button/door/directional/north{ + pixel_x = 6; + name = "Loading Doors"; + id = "cargunload"; + req_access = list("cargo") + }, +/obj/machinery/button/door/directional/north{ + pixel_x = -6; + name = "Loading Doors"; + id = "cargload"; + req_access = list("cargo") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"baS" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"bbb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bbf" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"bbk" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"bbn" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bbr" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"bbB" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bbE" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/robotics/storage) +"bbJ" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bbP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/engineering/atmos/storage) +"bbT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"bcd" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"bcf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"bcm" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/central) +"bco" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"bct" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/brown/line, +/obj/item/banner/cargo/mundane, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/cargo/lower) +"bcu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"bcv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"bcw" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/engineering/atmos/storage) +"bcE" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"bcJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"bcR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bcU" = ( +/turf/open/floor/glass, +/area/station/hallway/secondary/command) +"bcV" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/barricade/sandbags{ + color = "#9d1a1a" + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"bda" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"bdb" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bdc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/shrink_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/storage) +"bdf" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"bdh" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/item/toy/figure/rd{ + pixel_y = 16; + pixel_x = -1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/rd) +"bdk" = ( +/obj/structure/frame/machine, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bdn" = ( +/obj/machinery/light/floor, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/funeral) +"bdp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"bdr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"bdu" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr"; + dir = 1 + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"bdz" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"bdA" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd","xeno") + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"bdB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/grass/green/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/food/grown/wheat, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/turf/open/misc/sandy_dirt, +/area/station/maintenance/starboard/central) +"bdG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/machinery/door/window/left/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"bdM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"bdQ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"bdS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/science/ordnance/storage) +"bdU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/flask/gold{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/machinery/light/directional/west, +/obj/structure/secure_safe/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"bee" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/item/banner/command/mundane, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"beh" = ( +/obj/structure/rack, +/obj/effect/spawner/random/bureaucracy/briefcase{ + spawn_loot_count = 2; + spawn_loot_split = 1 + }, +/obj/effect/spawner/random/bureaucracy/briefcase{ + spawn_loot_count = 2; + spawn_loot_split = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"beA" = ( +/obj/structure/hedge, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"beF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"beY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"bfa" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"bfb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"bfc" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/turf/open/floor/iron/white/smooth_half, +/area/station/commons/fitness) +"bfe" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/deck, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"bfg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"bfk" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"bfm" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"bfo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"bfp" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"bfq" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"bfz" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"bfF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair/stool/bar/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"bfM" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"bfO" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"bfP" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"bfR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard/directional/west, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"bfX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"bgl" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"bgm" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"bgo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/science) +"bgp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/hedge, +/obj/structure/secure_safe/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"bgz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/photocopier, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"bgN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/starboard/central) +"bgQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"bgZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"bhf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bhh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plastic, +/area/station/security/prison/work) +"bho" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"bhs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"bhJ" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"bhK" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"bhM" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bhQ" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"bhZ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/medical/pharmacy) +"bie" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/south, +/obj/item/folder{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/pen{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"bif" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"bii" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"bil" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/command) +"bip" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"bit" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"biu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"biA" = ( +/obj/machinery/computer/records/medical, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"biF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"biK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"biQ" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"biS" = ( +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"biY" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/fore) +"bjc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"bjf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/item/clipboard, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/folder/yellow{ + pixel_y = 3; + pixel_x = -2 + }, +/obj/item/pen/blue{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/fountain{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"bjn" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/morgue) +"bjr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"bjv" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/science) +"bjx" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"bjy" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"bjB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bjL" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"bjQ" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"bkh" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"bki" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation) +"bkn" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"bkF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8; + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/command/heads_quarters/qm) +"bkI" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/target/alien, +/obj/machinery/camera/preset/ordnance{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"bkO" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"bkR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/boutique) +"blb" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/carpet/donk, +/area/station/medical/pharmacy) +"bld" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ble" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"blf" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin/carbon{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/stamp/head/hop{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/pen/fountain{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/machinery/requests_console/directional/south{ + department = "Head of Personnel's Desk"; + name = "Head of Personnel's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/announcement, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"blp" = ( +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"blu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"blD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron, +/area/station/commons/dorms) +"blG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"blI" = ( +/obj/structure/guncase/shotgun{ + anchored = 1; + can_be_unanchored = 1; + open = 0 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Bar"; + name = "Bar Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"blK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/light/small/dim/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"blQ" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"blS" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/bookcase/random, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"blV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"bma" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/vending/coffee, +/turf/open/floor/glass/reinforced, +/area/station/command) +"bmd" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/hedge/opaque, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"bmk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"bmn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bmp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bmu" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"bmA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"bmB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"bmE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"bmF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bmS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/toy/mecha/deathripley, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bmV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"bmY" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"bna" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bnb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bnk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"bnn" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Cargo Bay" + }, +/obj/effect/turf_decal/trimline/red/filled, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"bnt" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"bnu" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bnv" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"bnA" = ( +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Patient Room B" + }, +/obj/structure/curtain/cloth, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_b) +"bnC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"bnD" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"bnE" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"bnM" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/table/glass, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture/emergency, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"bnN" = ( +/obj/structure/table/optable, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/medical) +"bnQ" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bnR" = ( +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"bnT" = ( +/obj/item/grown/bananapeel, +/obj/effect/decal/cleanable/vomit, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bnU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/landmark/navigate_destination/dockaux, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"bod" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"boi" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"bon" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"boz" = ( +/obj/structure/railing/corner/end/flip{ + dir = 4; + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"boA" = ( +/obj/effect/turf_decal/siding/brown, +/obj/machinery/griddle, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"boB" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"boE" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"boO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/processing) +"bpb" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/maintenance/department/medical) +"bpf" = ( +/obj/structure/sign/poster/official/safety_internals/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/rack, +/obj/machinery/door/window/right/directional/south{ + name = "Magboot Storage"; + req_access = list("eva") + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"bpj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"bps" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"bpt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/sign/poster/official/enlist/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"bpJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bpK" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/snow/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"bpZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/food/grown/poppy{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_y = 11 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"bqa" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"bqe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"bqf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"bqq" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"bqw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"bqI" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"bqJ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"bqN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"bqO" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"bqR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"bqW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bqZ" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/cargo/breakroom) +"bri" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"brk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"brl" = ( +/obj/structure/broken_flooring/singular/always_floorplane/directional/north, +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bry" = ( +/obj/item/toy/seashell{ + icon_state = "shell3"; + pixel_x = -72; + pixel_y = -26 + }, +/obj/item/toy/beach_ball, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/bamboo, +/area/station/ai_monitored/aisat/exterior) +"brC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/bush/lavendergrass, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"brG" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab" + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"brK" = ( +/obj/structure/chair/wood, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"brL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"brO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"brW" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 9 + }, +/obj/item/lighter{ + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"brZ" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/recharge_station, +/turf/open/floor/circuit/green/telecomms, +/area/station/tcommsat/server) +"bsl" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"bsn" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/fore) +"bso" = ( +/obj/structure/hedge, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"bsq" = ( +/obj/structure/hedge, +/turf/open/floor/carpet/neon/simple/cyan, +/area/station/maintenance/starboard/central) +"bsr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"bsu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"bsy" = ( +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/service/chapel) +"bsE" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"bsK" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/aft/greater) +"bsL" = ( +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"bti" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"btj" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/machinery/smartfridge, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"btr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/hfr_room) +"bts" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"btt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"btw" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box/white/corners, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/janitor) +"btz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"btQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"btY" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"buh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/commons/toilet/restrooms) +"bui" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"bum" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/multitool{ + pixel_x = -15; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"buq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"bus" = ( +/obj/structure/railing, +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"buC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"buD" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"buI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"buJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"buK" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/machinery/door/window/left/directional/north{ + req_access = list("shipping"); + name = "Crate to Shuttle" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"buT" = ( +/obj/structure/railing, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"bvi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = -1; + pixel_x = -9 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/machinery/door/window/right/directional/south, +/obj/item/storage/box/coffeepack/robusta{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"bvr" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bvt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"bvA" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/prison) +"bvF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"bvG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bvI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"bvN" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/skill_station, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/wood/large, +/area/station/service/library) +"bvO" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 24; + name = "SS13: Auxiliary Dock, Station-Port"; + shuttle_id = "whiteship_home"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"bvV" = ( +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"bvW" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/checkpoint/customs) +"bwh" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"bwj" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"bwp" = ( +/obj/structure/urinal/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"bwq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"bwu" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"bwz" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"bwC" = ( +/turf/closed/wall, +/area/station/service/library/upper) +"bwF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bwJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"bwU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"bwX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/processing) +"bwZ" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/jungle/b/style_2, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/service/theater_dressing) +"bxb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/genetics) +"bxc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"bxg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bxm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bxr" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"bxv" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = 32 + }, +/obj/structure/railing, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"bxw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"bxz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"bxA" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/railing/corner{ + dir = 8; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"bxI" = ( +/turf/closed/wall, +/area/station/medical/psychology) +"bxK" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"bxM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/solars/starboard/fore) +"bxN" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/central) +"bxP" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/security/brig/lower) +"bxU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bxV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bxW" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/reagent_containers/cup/watering_can, +/obj/structure/rack, +/obj/item/vending_refill/hydroseeds, +/obj/effect/turf_decal/box/white, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"bye" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"byi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"byk" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"bym" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 2; + pixel_x = 9 + }, +/obj/structure/sign/poster/official/get_your_legs/directional/north, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"byo" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"bys" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"byt" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"byx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/sofa/left/maroon{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/end, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/starboard/central) +"byz" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"byG" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/item/toy/clockwork_watch{ + pixel_x = 15 + }, +/obj/item/soulstone/anybody/chaplain, +/obj/item/reagent_containers/cup/glass/bottle/holywater{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"byH" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"byU" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"bzi" = ( +/obj/effect/turf_decal/trimline/white/arrow_ccw, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"bzp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"bzq" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"bzt" = ( +/turf/open/openspace, +/area/station/maintenance/fore/greater) +"bzv" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/medbay/central) +"bzx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"bzz" = ( +/obj/structure/closet{ + name = "evidence closet 1" + }, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"bzA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"bzC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/sign/poster/official/safety_internals/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/obj/machinery/navbeacon{ + location = "F1-Fore-Hallway"; + codes_txt = "patrol;next_patrol=F2-Fore-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"bzG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"bzN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/south, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"bzQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"bzR" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"bzT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/mining_weather_monitor/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"bzU" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "ldorm1"; + name = "Curtains" + }, +/turf/open/floor/plating, +/area/station/commons/dorms) +"bzV" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bzX" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/bush/large/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"bzZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"bAb" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"bAd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/energy_swords/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"bAk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/processing) +"bAl" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/bed/medical/emergency, +/obj/machinery/iv_drip, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"bAo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"bAs" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"bAt" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"bAz" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/door/window/left/directional/north{ + name = "Gas Ports"; + req_access = list("armory") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"bAC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/hos) +"bAD" = ( +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" + }, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Padded Cell"; + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/small, +/area/station/medical/patients_rooms) +"bAI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"bAO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bAQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/east{ + id = "fishstore" + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/port/aft) +"bAS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"bAW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"bBb" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"bBc" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"bBf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"bBh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/wood, +/obj/structure/noticeboard/directional/north{ + dir = 2 + }, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"bBl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"bBo" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"bBq" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/structure/desk_bell{ + pixel_x = 6 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Genetics Desk"; + req_access = list("genetics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"bBx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"bBz" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"bBC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"bBE" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"bBI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/engine_smes) +"bBN" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"bBO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bBP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/project) +"bBQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"bBR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing/corner{ + color = "#683d21"; + pixel_y = -4; + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/barsign/directional/north, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"bBS" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/interrogation) +"bBV" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/radio/off, +/turf/open/floor/iron/dark, +/area/station/command) +"bBW" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/port) +"bBZ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"bCc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/goonplaque, +/area/station/hallway/primary/central) +"bCe" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"bCg" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"bCn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"bCo" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/solars/port/aft) +"bCr" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"bCK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bCO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/goonplaque, +/area/station/service/theater) +"bCR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/railing, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"bCS" = ( +/obj/machinery/door/airlock/security{ + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"bCV" = ( +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"bCW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"bDg" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/breakroom) +"bDi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"bDj" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bDk" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"bDn" = ( +/obj/effect/turf_decal/trimline/white/arrow_ccw{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"bDq" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/cargo) +"bDs" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil, +/obj/machinery/light/directional/east, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/item/stock_parts/power_store/cell, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"bDw" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/white, +/area/station/science/lab) +"bDJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"bDN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bDP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/pile, +/obj/structure/flora/bush/ferny/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bDR" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"bDU" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/bot/right, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"bDW" = ( +/obj/item/bikehorn/rubberducky, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"bEv" = ( +/obj/structure/sign/departments/rndserver/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"bEy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/fore) +"bEE" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"bEG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"bEI" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"bEJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 9 + }, +/obj/structure/chair, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"bEL" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"bEM" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"bEN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"bES" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 1 + }, +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"bEU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"bEW" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/hedge, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"bEY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"bFk" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"bFl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"bFr" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"bFt" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/hedge, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bFu" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3 + }, +/obj/machinery/conveyor{ + id = "garbage" + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"bFw" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"bFA" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"bFB" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/aft) +"bFC" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/service/chapel) +"bFH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/sign/departments/aisat/directional/south, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/command) +"bFI" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"bFX" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/wood, +/obj/item/pen/fourcolor, +/obj/item/pen/charcoal{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"bGb" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"bGd" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/broken_flooring/side/directional/west{ + color = "#73737a" + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"bGe" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bGf" = ( +/obj/item/ammo_casing{ + pixel_x = -6; + pixel_y = -6; + dir = 8 + }, +/obj/item/ammo_casing{ + pixel_x = 7; + dir = 9; + pixel_y = 3 + }, +/obj/structure/fluff/paper/stack{ + dir = 9; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"bGt" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"bGw" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"bGz" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/garden) +"bGC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"bGE" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"bGN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/item/kirbyplants/organic/plant20, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"bHa" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"bHe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"bHh" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/ladder, +/obj/structure/sign/departments/chemistry/directional/north, +/obj/machinery/door/window/left/directional/east{ + name = "Chemistry Access"; + req_access = list("plumbing") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/pharmacy) +"bHl" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bHo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos) +"bHp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"bHr" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"bHD" = ( +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"bHH" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"bHP" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"bHT" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"bHU" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"bHW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/dorms) +"bIf" = ( +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/obj/item/stack/cable_coil/cut, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bIg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/aft/lesser) +"bIi" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"bIo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"bIq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"bIz" = ( +/obj/structure/broken_flooring/singular/directional/west, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"bIM" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/kirbyplants/organic/plant11{ + icon_state = "plant-25"; + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/clock/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"bIQ" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"bIS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"bIU" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid9" + }, +/area/space/nearstation) +"bIX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"bIZ" = ( +/turf/closed/wall, +/area/station/medical/storage) +"bJb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/noticeboard/directional/north, +/obj/structure/chair/pew/left, +/obj/item/clothing/suit/chaplainsuit/nun, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"bJc" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"bJf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"bJg" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"bJm" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"bJn" = ( +/turf/open/floor/glass, +/area/station/service/library/upper) +"bJq" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bJw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison) +"bJA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bJK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"bJM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bJN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bJQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bJR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bJT" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/blasto_detergent/directional/north, +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"bJU" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"bJW" = ( +/turf/open/floor/iron/stairs/left/airless{ + dir = 4; + color = "#3d3e42" + }, +/area/space/nearstation) +"bJX" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"bJY" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bKb" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"bKg" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#5971a6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"bKj" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation) +"bKq" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"bKz" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"bKA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"bKE" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/box/red, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"bKG" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bKI" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"bKK" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "secmechbay"; + name = "Security Mech Bay Shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"bKL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"bKM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bKQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"bKX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/rock/pile/jungle/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bLa" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"bLd" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bLh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"bLi" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"bLk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"bLu" = ( +/turf/closed/wall, +/area/station/maintenance/port) +"bLz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"bLA" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"bLE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"bLG" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - O2" + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"bLJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"bLL" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"bLM" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/transport/linear/public, +/obj/item/kirbyplants/random, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"bLX" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/security/brig) +"bMc" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/utility/welding, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"bMf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/obj/machinery/button/curtain{ + pixel_x = 24; + pixel_y = 6; + id = "radioroom"; + name = "Curtains" + }, +/obj/machinery/button/door/directional/east{ + pixel_y = -6; + normaldoorcontrol = 1; + specialfunctions = 4; + id = "radiobolt"; + name = "Door Bolt Control" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"bMh" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bMm" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"bMt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"bMv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"bMx" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"bMP" = ( +/obj/machinery/light/floor{ + color = "#ff8080" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"bMT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"bMY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"bNh" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"bNj" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"bNk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Containment Pen #5"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bNl" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bNm" = ( +/obj/machinery/modular_computer/preset/research{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"bNq" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/station/hallway/secondary/service) +"bNr" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/service/minibar) +"bNx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"bNE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"bNF" = ( +/obj/structure/filingcabinet, +/obj/item/paperwork/captain, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"bNG" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"bNI" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"bNJ" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bNK" = ( +/obj/effect/turf_decal/trimline/white/arrow_cw{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"bNM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"bNN" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/left{ + dir = 8; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/central) +"bNP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/science/genetics) +"bNR" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"bNT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"bNU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"bNX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bOg" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/turf/open/floor/plating, +/area/station/service/library/upper) +"bOi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"bOl" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"bOw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"bOS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/aft/lesser) +"bOW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bOX" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr"; + dir = 1 + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"bPd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bPk" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"bPm" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"bPt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) +"bPw" = ( +/turf/closed/wall, +/area/station/cargo/miningoffice) +"bPD" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/pharmacy) +"bPE" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_corner, +/area/station/commons/fitness) +"bPH" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/flora/rock/pile/icy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/grass/green/style_random, +/obj/structure/flora/bush/snow/style_random, +/obj/structure/marker_beacon/purple, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lobby) +"bPI" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/machinery/button/door/directional/north{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 6; + pixel_y = 2; + req_access = list("xenobiology") + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"bPN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"bPR" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"bPT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"bPV" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"bPW" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/toy/figure/secofficer{ + pixel_y = 48; + pixel_x = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"bPX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"bPY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bPZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_holder/extinguisher/advanced, +/obj/structure/sign/warning/no_smoking/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) +"bQa" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 13 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"bQd" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/lobby) +"bQi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"bQp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Civil Rad Shelter" + }, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"bQu" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = -5 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"bQT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bQX" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"bQY" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/raw_anomaly_core/random{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/item/raw_anomaly_core/random{ + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"bRc" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"bRd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Justice Chamber"; + req_access = list("armory") + }, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "Justice Chamber"; + req_access = list("armory") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "SecJusticeChamber"; + name = "Justice Chamber Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"bRe" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bRo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/small/red/dim/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"bRq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"bRt" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"bRy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"bRC" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/starboard) +"bRH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"bRT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"bRW" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/secure_safe/directional/north, +/obj/structure/safe, +/obj/item/lazarus_injector, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/stack/spacecash/c1000, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"bRZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"bSb" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"bSi" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/griddle, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"bSs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"bSu" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"bSz" = ( +/obj/item/food/grown/apple/gold{ + preserved_food = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/port) +"bSA" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"bSB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bSF" = ( +/obj/docking_port/stationary{ + height = 7; + name = "Cargo Bay"; + shuttle_id = "cargo_home"; + width = 12; + dwidth = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bSH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"bSI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"bSN" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"bSX" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bTa" = ( +/obj/structure/hedge/opaque, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"bTi" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"bTl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/billboard/nanotrasen{ + pixel_y = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"bTu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 5; + pixel_x = 10 + }, +/obj/item/pen{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"bTA" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/structure/bed/medical{ + dir = 4 + }, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"bTC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bTY" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/fore) +"bUf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"bUg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"bUi" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"bUj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"bUk" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"bUm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/central) +"bUn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"bUo" = ( +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"bUs" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"bUw" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"bUG" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"bUK" = ( +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/courtroom) +"bUL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"bUU" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage" + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"bUW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bUX" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"bVe" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"bVi" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"bVk" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter" + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"bVp" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/port) +"bVs" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/medical/virology) +"bVx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/science/explab) +"bVC" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/break_room) +"bVJ" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"bVM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"bVO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "crematoriumshutter"; + name = "Crematorium Shutters" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"bVQ" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"bVR" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bVU" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 locker" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"bVW" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"bWa" = ( +/obj/machinery/light/small/dim/directional/south, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"bWc" = ( +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"bWd" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/item/clothing/shoes/cookflops{ + desc = "A very fashionable pair of flip flops."; + name = "flip-flops" + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"bWi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"bWj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/aft/lesser) +"bWm" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"bWn" = ( +/obj/machinery/libraryscanner, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"bWt" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/sorting) +"bWx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"bWz" = ( +/obj/structure/window/spawner/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bWJ" = ( +/obj/structure/toilet/greyscale{ + pixel_y = 14 + }, +/obj/structure/mirror/directional/east, +/obj/structure/sink/directional/west, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/service/cafeteria) +"bWZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bXa" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"bXe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"bXh" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"bXi" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"bXj" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/reagent_containers/pill/happy{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/machinery/iv_drip, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"bXn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bXp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"bXt" = ( +/obj/structure/fluff/paper/stack, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"bXu" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/freezerchamber) +"bXA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/item/toy/figure/scientist{ + pixel_y = 6; + pixel_x = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"bXG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"bXO" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/vending/wallmed/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/medical/storage) +"bXQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/suit/caution{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"bXU" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"bXZ" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"bYb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/fermenting_barrel, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"bYc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 2; + pixel_x = -9 + }, +/obj/machinery/door/window/right/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/item/storage/box/coffeepack{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"bYs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"bYt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/service/kitchen) +"bYy" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/fore/greater) +"bYA" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"bYD" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"bYG" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"bYJ" = ( +/obj/structure/barricade/sandbags{ + color = "#9d1a1a" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + name = "Red Team"; + id = "laserred" + }, +/turf/open/floor/carpet/neon/simple/red, +/area/station/commons/fitness/recreation/lasertag) +"bYK" = ( +/obj/structure/hedge, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"bYO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"bYS" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/starboard) +"bYW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"bYZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"bZa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"bZi" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"bZj" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"bZk" = ( +/obj/structure/table/glass, +/obj/item/stack/spacecash/c10, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"bZp" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"bZu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"bZy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"bZA" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"bZC" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"bZE" = ( +/turf/open/floor/glass/reinforced, +/area/space/nearstation) +"bZJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/item/stack/arcadeticket, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"bZM" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"bZO" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"bZT" = ( +/turf/closed/wall, +/area/station/security/checkpoint/escape) +"cad" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig/lower) +"cai" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/port) +"caj" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cao" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"caq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"cas" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/ordnance/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lower) +"cav" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"caw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/carpet/donk, +/area/station/cargo/breakroom) +"cax" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/duct, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"caE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"caH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer5, +/obj/structure/sign/poster/official/wtf_is_co2/directional/south, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"caI" = ( +/obj/machinery/modular_computer/preset/cargochat/science{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"caJ" = ( +/obj/structure/sign/poster/contraband/bountyhunters/directional/east, +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/theater) +"caP" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"caQ" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"caT" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"caW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"caY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"caZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"cbb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"cbf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/contraband/missing_gloves/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"cbm" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"cbn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cbq" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"cbv" = ( +/obj/item/clothing/under/rank/security/warden/grey, +/obj/structure/closet/secure_closet/warden, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"cby" = ( +/turf/closed/wall, +/area/station/security/prison/garden) +"cbH" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/port) +"cbN" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/structure/railing, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness) +"cbS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/item/electropack, +/obj/item/clothing/head/helmet/sec, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"cbU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"cbY" = ( +/obj/structure/rack, +/obj/item/throwing_star/toy, +/obj/item/throwing_star/toy{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/bamboo/tatami/black, +/area/station/maintenance/starboard/central) +"cci" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/borg, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ccj" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/light, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"ccp" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"ccq" = ( +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"ccy" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"ccA" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"ccC" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"ccE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"ccF" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/lesser) +"ccR" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/pdapainter/engineering, +/obj/item/phone{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/toy/figure/ce{ + pixel_y = 9; + pixel_x = -7 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"ccT" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"cdf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"cdm" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr" + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"cds" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"cdx" = ( +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/effect/spawner/random/trash/bin, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cdy" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"cdJ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/turf/open/floor/plating, +/area/station/service/greenroom) +"cdN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"cdX" = ( +/obj/structure/cable, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/rack, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/brig) +"cdY" = ( +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/snow/style_5, +/obj/structure/flora/rock/pile/icy, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/tree/dead/style_4{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/hallway/primary/fore) +"ceh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cer" = ( +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"ceA" = ( +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 8 + }, +/area/station/maintenance/port/central) +"ceJ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"ceO" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"ceR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"ceU" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/aft) +"ceY" = ( +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"cfa" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"cfd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/maintenance/central) +"cff" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cfg" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"cfm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/warehouse) +"cft" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"cfx" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"cfF" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"cfH" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "custodialshutters"; + name = "Custodial Closet Shutters Control"; + req_access = list("janitor") + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 34 + }, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"cfJ" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"cfL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"cfN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"cfV" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"cfX" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/tank_holder/oxygen/yellow, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"cfZ" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/starboard) +"cga" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/rad_shelter/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"cgi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"cgl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"cgs" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","bar") + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"cgy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"cgJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/item/folder/white{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/east{ + name = "Chemistry Desk"; + req_access = list("plumbing") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters"; + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"cgN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cgQ" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"chl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/medical/patients_rooms) +"chn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"cho" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"chq" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/jungle/a/style_random, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/commons/storage/primary) +"chw" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig/lower) +"chy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"chA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"chH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/prison/work) +"chM" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"chN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"chW" = ( +/turf/closed/wall, +/area/station/construction/mining/aux_base) +"cig" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cih" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"cii" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/sign/xenobio_guide/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"cij" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"cik" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ciw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cix" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ciG" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters"; + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"ciK" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"ciM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"ciQ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/eva) +"ciR" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/water_source/puddle, +/turf/open/floor/grass, +/area/station/medical/virology) +"ciU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"ciV" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cjg" = ( +/obj/machinery/light/directional/west{ + color = "#ffcc99" + }, +/obj/item/flashlight/flare/candle{ + pixel_y = 5; + pixel_x = 16 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/table/wood/fancy/black, +/obj/item/plate/small{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"cjp" = ( +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/service/chapel) +"cjx" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"cjB" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"cjI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"cjK" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cjR" = ( +/obj/structure/filingcabinet, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/interrogation) +"cka" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ckf" = ( +/obj/structure/railing, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/science/genetics) +"cki" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"ckn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"cko" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ckz" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"ckB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"ckC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"ckF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/lobby) +"ckG" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/item/aicard, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ckK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"ckL" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/obj/structure/cable, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ckO" = ( +/obj/machinery/defibrillator_mount/directional/north, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/east, +/obj/structure/bed/medical{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ckV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"ckZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/engineering/storage) +"cla" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"clm" = ( +/turf/closed/wall, +/area/station/science/genetics) +"clv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"cly" = ( +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"clB" = ( +/turf/open/openspace, +/area/station/science/lab) +"clD" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/cargo/storage) +"clK" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"cmg" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/ai_monitored/command/nuke_storage) +"cmj" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"cmm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"cmp" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cmu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"cmx" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/a/style_3, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"cmy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"cmA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"cmD" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cmI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"cmM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/central) +"cmP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"cna" = ( +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/prison) +"cnc" = ( +/obj/item/seeds/wheat, +/obj/item/seeds/sugarcane, +/obj/item/seeds/potato, +/obj/item/seeds/apple, +/obj/item/grown/corncob, +/obj/item/food/grown/carrot, +/obj/item/food/grown/wheat, +/obj/item/food/grown/pumpkin{ + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"cnx" = ( +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/structure/chair/stool/bar/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"cnz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"cnC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"cnE" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"cnH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"cnL" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/machinery/griddle, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"cnV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"cnY" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics/garden) +"coi" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/tcommsat/computer) +"cox" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/structure/sign/poster/official/tactical_game_cards/directional/south, +/obj/structure/sign/poster/contraband/clown/directional/west, +/obj/item/kirbyplants/organic/plant10, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"coB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/firealarm/directional/east, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/office) +"coE" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"coF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"coK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/brig) +"coL" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"coN" = ( +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 6; + pixel_y = -27 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"coT" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"coW" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"coY" = ( +/obj/structure/flora/bush/grassy/style_random, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"cpb" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"cph" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cpk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"cpl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"cpm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"cpn" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"cpq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cpx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"cpC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"cpI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cpL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"cpQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"cqc" = ( +/obj/effect/turf_decal/caution/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -5; + pixel_y = 0 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cqe" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/research) +"cqi" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"cqq" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/medical/break_room) +"cqy" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/miningoffice) +"cqz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"cqB" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, +/obj/item/poster/random_contraband{ + pixel_y = 18 + }, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"cqG" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Research Director's Office"; + name = "Research Director's Fax Machine" + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"cqH" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/commons/toilet/restrooms) +"cqM" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/north, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"cqN" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"cqT" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/turf/open/floor/stone, +/area/station/maintenance/starboard/fore) +"cqU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"cqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"crc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"crh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"crs" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/decal/cleanable/confetti, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"crx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"cry" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"crz" = ( +/obj/effect/spawner/random/structure/table_fancy, +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"crB" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"crD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/analyzer, +/obj/item/pipe_dispenser, +/obj/item/flashlight, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"crH" = ( +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"crO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/north, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"crQ" = ( +/obj/structure/sign/departments/science/directional/north, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"crS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/commons/dorms) +"crT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"crV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"csb" = ( +/obj/structure/railing{ + dir = 5; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"csc" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"csk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"csm" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"csp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/atmos/upper) +"csw" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/station/cargo/storage) +"csz" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"csG" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/science/research) +"csI" = ( +/turf/closed/wall, +/area/station/cargo/drone_bay) +"csK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/greater) +"csR" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"csT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"csV" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"cta" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/kirbyplants/organic/plant21, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"cte" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"cti" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ctp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"ctx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/smartfridge, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/garden) +"ctH" = ( +/turf/closed/wall, +/area/station/service/theater) +"ctI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"ctL" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot_white, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"ctM" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/trophy{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/eldritch_book{ + pixel_x = -8 + }, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"ctN" = ( +/obj/machinery/button/flasher{ + id = "holdingflash"; + name = "Holding Cell Flasher"; + pixel_y = -26; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"ctQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lower) +"ctY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cua" = ( +/obj/machinery/door/airlock/glass{ + name = "Escape Pods" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"cud" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) +"cuf" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"cug" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"cur" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"cus" = ( +/obj/structure/cable, +/obj/machinery/light/small/red/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"cuu" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port) +"cux" = ( +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 20; + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/syndicate{ + pixel_y = 20; + icon_state = "sprayer_sus_6"; + pixel_x = -6 + }, +/obj/item/reagent_containers/spray/syndicate{ + pixel_y = 15 + }, +/obj/item/ph_booklet{ + pixel_x = -9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/noticeboard/directional/north{ + pixel_y = 38 + }, +/obj/item/assembly/igniter{ + pixel_x = 13; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/bridge) +"cuG" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/organic, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"cuH" = ( +/obj/item/plate, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"cuI" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"cuJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"cuP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Science Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"cuQ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"cuZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"cvc" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"cve" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"cvj" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access = list("library") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"cvk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/cargo/miningoffice) +"cvm" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"cvr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/crushed_can, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/central) +"cvt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"cvx" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/warden) +"cvG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"cvH" = ( +/obj/machinery/button/elevator/directional/west{ + id = "SecElevator" + }, +/obj/structure/noticeboard/hos{ + pixel_y = 32 + }, +/obj/machinery/lift_indicator/directional/west{ + pixel_x = -33; + pixel_y = -1; + linked_elevator_id = "SecElevator" + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig/lower) +"cvK" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"cvL" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"cvP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/dorms) +"cvQ" = ( +/obj/structure/lattice, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cvY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"cwk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"cwv" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"cww" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"cwz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"cwK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cwL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cwM" = ( +/obj/item/clothing/mask/party_horn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cxa" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"cxq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cxs" = ( +/obj/structure/stairs/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"cxt" = ( +/obj/structure/railing{ + dir = 8; + color = "#36373a" + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42" + }, +/area/station/service/theater_dressing) +"cxw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/table/glass, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"cxB" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"cxC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/grass/jungle/b/style_2, +/obj/structure/flora/rock/pile, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"cxF" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"cxG" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cxH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cxJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cxN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/department/bridge) +"cxO" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/reagent_dispensers/wall/virusfood/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"cxS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"cxW" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"cyc" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/large/style_2, +/turf/open/floor/grass, +/area/station/medical/lower) +"cyg" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"cyk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cyn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"cyo" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant12{ + pixel_x = -10; + pixel_y = 22 + }, +/turf/open/floor/carpet, +/area/station/cargo/mining_breakroom) +"cyu" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"cyw" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/security/brig) +"cyy" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"cyz" = ( +/obj/structure/broken_flooring/side/directional/west, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cyB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cyE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"cyJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cyK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cyO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"cyT" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"cyW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"cza" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"czb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"czc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"czf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/education) +"czk" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/commons/dorms) +"czs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "maintwindows2" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"czt" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"czA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/autoname/directional/east{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/holding_cell) +"czH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"czJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/directions/medical/directional/west{ + pixel_y = 8; + dir = 1 + }, +/obj/structure/sign/directions/science/directional/west{ + dir = 1 + }, +/obj/structure/sign/directions/supply/directional/west{ + pixel_y = -8; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"czK" = ( +/obj/machinery/atmospherics/components/binary/crystallizer{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"czM" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/interrogation) +"czQ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"czS" = ( +/obj/structure/closet/secure_closet/freezer/empty, +/obj/item/reagent_containers/condiment/soymilk, +/obj/item/reagent_containers/condiment/milk, +/obj/item/storage/box/coffeepack/robusta, +/obj/item/storage/box/coffeepack, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"czU" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"czV" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cAc" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/medical/virology) +"cAd" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"cAe" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage_shared) +"cAi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"cAk" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/aft/lesser) +"cAo" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/structure/sign/painting/large/library{ + pixel_y = -64; + dir = 1 + }, +/turf/open/floor/stone, +/area/station/commons/dorms) +"cAp" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/jungle/a, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"cAr" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/trash/bin, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cAu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/radiation, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"cAv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"cAG" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"cAJ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"cAL" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/closet/crate/trashcart/laundry, +/obj/machinery/bluespace_vendor/directional/south, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/item/clothing/gloves/maid, +/obj/item/clothing/accessory/maidapron, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/neck/maid, +/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"cAR" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"cAS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/poster/random_official{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_official, +/obj/item/papercutter, +/obj/machinery/door/window/brigdoor{ + name = "Warden Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/left/directional/north{ + name = "Warden Desk"; + req_access = list("security") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"cBb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"cBg" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cBm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"cBn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/fore/lesser) +"cBs" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/hallway/primary/fore) +"cBA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/door/window/right/directional/south{ + name = "Jetpack Storage"; + req_access = list("eva") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"cBK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/north, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"cBM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cCc" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology) +"cCf" = ( +/turf/closed/wall, +/area/station/science/circuits) +"cCg" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"cCk" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/machinery/smartfridge/food, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"cCq" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/closet/l3closet, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"cCr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"cCs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cCw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/glass, +/area/station/maintenance/port/fore) +"cCA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"cCH" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"cCS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/obj/structure/sign/poster/official/foam_force_ad/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"cCX" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"cDb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"cDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/emergency{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"cDh" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "cargload"; + name = "Supply Dock Loading Door" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"cDk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/office) +"cDl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"cDu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"cDx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"cDD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cDM" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness) +"cDP" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white{ + color = "#74b2d3" + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"cDQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"cDS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"cDT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/closet/secure_closet/hop, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hop) +"cEc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"cEd" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/sorting) +"cEh" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cEo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"cEA" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"cEF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"cEM" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Service Deliveries" + }, +/obj/structure/sign/departments/botany/directional/east{ + color = "#9FED58" + }, +/obj/structure/plasticflaps{ + name = "Service Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"cEO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"cEV" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/minisat/directional/east, +/turf/open/floor/iron/dark/textured_corner, +/area/station/command) +"cFb" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"cFd" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cFe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"cFh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"cFl" = ( +/obj/machinery/door/airlock/security{ + name = "Courtroom" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"cFp" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/pipe_dispenser, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"cFw" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue, +/obj/structure/sign/departments/chemistry/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"cFy" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/rock/pile/jungle/style_3, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/medical/psychology) +"cFA" = ( +/obj/structure/foamedmetal, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"cFC" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/brimdust{ + plane = -7; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"cFQ" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/structure/sign/warning/biohazard, +/turf/open/space/openspace, +/area/space/nearstation) +"cFS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"cFT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"cFU" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/cafeteria) +"cFW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cGb" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green, +/obj/structure/railing, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"cGc" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"cGf" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"cGj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"cGm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"cGq" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/fore) +"cGv" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/trimline/dark_red/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/autoname/directional/south, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness) +"cGz" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/theater) +"cGC" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/processing) +"cGE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"cGG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cGI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/item/geiger_counter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cGK" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"cGO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/miningoffice) +"cGP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"cGR" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"cHd" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet, +/area/station/service/theater) +"cHf" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"cHg" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"cHr" = ( +/obj/structure/rack, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/item/storage/box/lights/mixed, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"cHu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/exit/departure_lounge) +"cHF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/a/style_3, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/maintenance/central) +"cHI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"cHN" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cHP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cHV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"cHW" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"cHZ" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"cIb" = ( +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/both/style_2, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"cId" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"cIf" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"cIi" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"cIl" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/pile/icy/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"cIp" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"cIv" = ( +/obj/item/clothing/head/cone, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"cIz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"cIB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"cIC" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage) +"cII" = ( +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "QM #1" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"cIJ" = ( +/turf/open/openspace, +/area/station/hallway/secondary/entry) +"cIN" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cIP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"cIR" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/red/opposingcorners, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos) +"cIW" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/engineering/engine_smes) +"cJj" = ( +/obj/effect/spawner/random/clothing/wardrobe_closet, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/funny_hats, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"cJp" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/library/lounge) +"cJz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/lime, +/turf/open/space/basic, +/area/space/nearstation) +"cJA" = ( +/obj/structure/railing{ + dir = 8; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cJP" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"cJY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"cJZ" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"cKa" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/sign/warning/vacuum/directional/north, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"cKb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"cKi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/wrapping, +/turf/open/misc/dirt/dark/station/airless, +/area/space/nearstation) +"cKl" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/landmark/start/cook, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"cKo" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cKt" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/breakroom) +"cKv" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"cKG" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"cKH" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cKJ" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance" + }, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"cKN" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/drinkingglass, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"cKO" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"cKQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"cKU" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"cKV" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"cKX" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"cLe" = ( +/turf/open/floor/iron/stairs/right, +/area/station/command/gateway) +"cLh" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"cLn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cLo" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"cLs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/decal/cleanable/cobweb, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/central) +"cLu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"cLw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"cLJ" = ( +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"cLM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"cLQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"cLR" = ( +/obj/machinery/computer/records/security, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"cLW" = ( +/obj/machinery/door/airlock/security{ + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"cLX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cLY" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/greyscale{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"cMc" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater) +"cMe" = ( +/obj/item/photo/old{ + pixel_x = 1; + pixel_y = 11 + }, +/obj/item/cigbutt{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"cMg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"cMj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/end{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"cMm" = ( +/obj/structure/noticeboard/directional/east{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"cMw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/security/telescreen/isolation/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/execution/education) +"cMz" = ( +/obj/machinery/computer/turbine_computer{ + dir = 8; + mapping_id = "main_turbine" + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -6; + pixel_y = -24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"cMN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/side{ + dir = 2 + }, +/area/station/service/kitchen) +"cMQ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"cMW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/vending/wallmed/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"cMY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/mail_sorting/service/hydroponics, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Hydroponics Junction" + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"cNi" = ( +/obj/structure/table/reinforced, +/obj/item/papercutter{ + pixel_y = 2; + pixel_x = -1 + }, +/obj/item/folder/yellow{ + pixel_y = 2 + }, +/obj/item/multitool{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/pen/red, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"cNj" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"cNk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/table/glass, +/obj/item/newspaper, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cNs" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"cNv" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"cNy" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/fore) +"cNz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"cNH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"cNN" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"cNO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"cNP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cNU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/visit) +"cNX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos/storage/gas) +"cOi" = ( +/turf/open/openspace, +/area/station/cargo/storage) +"cOk" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/structure/toilet{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = -9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"cOl" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/maintenance/port) +"cOp" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/fore) +"cOt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"cOv" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"cOB" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"cOG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/machinery/vending/cigarette{ + pixel_x = -2 + }, +/obj/item/cigarette{ + pixel_x = -4; + pixel_y = 17 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"cOO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/announcement_system, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"cOT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"cOW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/button/door/directional/south{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access = list("engineering") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cPz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/sign/warning/pods/directional/north, +/obj/machinery/camera/autoname/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"cPK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cPL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"cPR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north{ + network = list("minisat") + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"cPU" = ( +/obj/structure/hedge, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"cPZ" = ( +/turf/closed/wall/r_wall, +/area/station/medical/morgue) +"cQb" = ( +/obj/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"cQk" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cQl" = ( +/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cQs" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"cQu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/aft/lesser) +"cQw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"cQB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"cQD" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cQF" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_pp/style_3, +/turf/open/floor/grass, +/area/station/service/greenroom) +"cQG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"cQH" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cQJ" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"cQZ" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"cRl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cRr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/solars/port/fore) +"cRt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "UndergroundCasino" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cRu" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) +"cRw" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Maintenance" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"cRD" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/security/prison/workout) +"cRE" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cRF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant21, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"cRG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cRJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/drinkingglass, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"cRP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Test Chamber Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"cRR" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"cRV" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/obj/effect/turf_decal/box, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/qm) +"cRX" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/bluespace_vendor/directional/north, +/obj/structure/closet/crate, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"cRZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood/poker, +/obj/item/lighter, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"cSd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"cSf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"cSi" = ( +/obj/structure/closet{ + name = "evidence closet 2" + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"cSq" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"cSt" = ( +/obj/machinery/stasis{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"cSv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/directions/evac/directional/west, +/obj/structure/sign/directions/dorms/directional/west{ + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering/directional/west{ + pixel_y = -8; + dir = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cSD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"cSL" = ( +/obj/structure/marker_beacon/bronze, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cSO" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) +"cSY" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/toilet{ + pixel_y = 12; + pixel_x = -4 + }, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/light/small/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"cTa" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"cTc" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"cTe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"cTi" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"cTr" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/north, +/obj/structure/table, +/obj/item/storage/medkit/emergency{ + pixel_y = 4 + }, +/obj/item/crowbar/red{ + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"cTs" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"cTv" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cTw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"cTE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"cTF" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/dorms) +"cTM" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/medical/virology) +"cTP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/structure/cable, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"cTU" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig/lower) +"cTV" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"cUj" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"cUk" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"cUq" = ( +/turf/closed/wall, +/area/station/commons/fitness) +"cUz" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/ammonia, +/obj/structure/sign/poster/official/periodic_table/directional/north, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plastic, +/area/station/security/prison/work) +"cUC" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"cUD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/red, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"cUG" = ( +/obj/structure/chair/sofa/corp/left, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"cUH" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"cUI" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"cUJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"cUR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"cUT" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/space/basic, +/area/space/nearstation) +"cUZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"cVg" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"cVk" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Base Construction" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore/lesser) +"cVn" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"cVs" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/medical) +"cVt" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/machinery/light/floor, +/obj/structure/flora/rock/pile/jungle/style_5, +/obj/structure/flora/tree/jungle/small/style_5, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/engineering/lobby) +"cVR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"cVX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"cWd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"cWe" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"cWi" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{ + dir = 4 + }, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"cWm" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3 + }, +/obj/machinery/conveyor{ + id = "garbage"; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"cWr" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"cWs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/port/aft) +"cWu" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"cWw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"cWB" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"cWI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"cWS" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 to Pure" + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"cWU" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"cWV" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"cXn" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"cXo" = ( +/obj/machinery/fax{ + fax_name = "Chief Engineer's Office"; + name = "Chief Engineer's Fax Machine" + }, +/obj/item/computer_disk/engineering, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"cXs" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/item/toy/seashell, +/turf/open/floor/bamboo, +/area/station/ai_monitored/aisat/exterior) +"cXw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/structure/sign/poster/official/bless_this_spess/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"cXz" = ( +/turf/open/floor/glass/reinforced/plasma/airless, +/area/space/nearstation) +"cXD" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"cXE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"cXK" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"cXO" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/item/newspaper, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"cXR" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"cXW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/caution, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"cXY" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"cXZ" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"cYe" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"cYg" = ( +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Firing Range Gear Crate"; + req_access = list("security") + }, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/structure/sign/poster/official/download/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/range) +"cYk" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"cYr" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"cYs" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"cYv" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Containment Pen #2"; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"cYz" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"cYB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"cYE" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/food/grown/banana, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/station/medical/virology) +"cYF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"cYH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/aft/lesser) +"cYI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"cYK" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"cYS" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"cYZ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north{ + pixel_y = 36 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/disposal) +"cZe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/lower) +"cZg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/brig) +"cZk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 5; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/service/theater) +"cZl" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/dark_red/anticorner, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/commons/fitness) +"cZm" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"cZn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"cZv" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/fore) +"cZw" = ( +/obj/structure/hedge, +/obj/structure/secure_safe/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"cZy" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Secondary Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"cZB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"cZG" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning, +/obj/machinery/lift_indicator/directional/east{ + pixel_x = 31; + pixel_y = -1; + linked_elevator_id = "BridgeElevator" + }, +/obj/machinery/button/elevator/directional/east{ + id = "BridgeElevator" + }, +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + transport_linked_id = "BridgeElevator"; + req_access = list("command") + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured_large, +/area/station/command) +"cZL" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port) +"cZU" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 10 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"cZX" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"dac" = ( +/obj/structure/sign/plaques/kiddie/badger{ + pixel_y = 32 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/table/wood/fancy, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"dae" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/carpet/red, +/area/station/service/library) +"daE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Paramedic's Station" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/office) +"daN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"daQ" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"daZ" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"dbe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/south, +/obj/structure/sign/calendar/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"dbg" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"dbh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/station/cargo/bitrunning/den) +"dbm" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/siding/purple, +/obj/structure/sign/departments/xenobio/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"dbo" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"dbs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/service/theater) +"dbt" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"dby" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"dbD" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/table, +/obj/item/folder{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"dbF" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"dbJ" = ( +/obj/item/radio/intercom/directional/north{ + frequency = 1447; + freerange = 1; + listening = 0 + }, +/obj/item/radio/intercom/directional/west{ + pixel_y = 8; + name = "Common Channel"; + freerange = 1; + listening = 0 + }, +/obj/item/radio/intercom/directional/east{ + pixel_y = 8; + name = "Custom Channel"; + freerange = 1; + listening = 0 + }, +/obj/machinery/button/door/directional/north{ + name = "AI Core Shutters Control"; + req_access = list("ai_upload"); + id = "AI Core shutters"; + pixel_x = 24 + }, +/obj/machinery/button/door/directional/north{ + pixel_x = -24; + id = "AI Chamber entrance shutters"; + name = "AI Chamber Entrance Shutters Control"; + req_access = list("ai_upload") + }, +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = -29; + pixel_y = -6 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/camera/autoname/directional/north{ + network = list("minisat") + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"dbO" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/hallway/secondary/command) +"dbT" = ( +/obj/structure/sign/warning/vacuum/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"dca" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"dck" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/grass, +/area/station/cargo/drone_bay) +"dcm" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"dcp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"dct" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/structure/railing{ + dir = 6; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"dcx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/chem_mass_spec, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/pharmacy) +"dcC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/tank_holder/anesthetic, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"dcI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"dcL" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"dcW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dcY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"dda" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"ddf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"ddh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"ddj" = ( +/obj/structure/broken_flooring/side/directional/north{ + color = "#73737a" + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ddq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/holosign/barrier, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"ddr" = ( +/turf/open/floor/glass/reinforced/plasma, +/area/station/engineering/supermatter/room) +"ddw" = ( +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"ddL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"ddM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"ddP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/table/glass, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"ddR" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"ddU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ddY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/rack, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/storage/belt/utility/full{ + pixel_y = 3 + }, +/obj/item/storage/belt/utility/full, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"deb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"dec" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant1, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"dek" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"del" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dew" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"deE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"deF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"deI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"deK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"deP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"deR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/multitool, +/obj/machinery/firealarm/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"deT" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"deW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/primary/fore) +"deZ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/obj/item/storage/toolbox/emergency, +/obj/item/screwdriver{ + pixel_y = 11 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"dfa" = ( +/obj/machinery/door/window/right/directional/north{ + name = "Petting Zoo" + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"dfd" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/disposal/bin{ + pixel_x = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"dfe" = ( +/obj/item/kirbyplants/random, +/obj/structure/plaque/static_plaque/golden{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"dfh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"dfi" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"dfs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dfy" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/testlab) +"dfz" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"dfA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/noticeboard/directional/south{ + pixel_y = -23 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"dfC" = ( +/obj/machinery/door/airlock/command{ + name = "Command Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"dfH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/jukebox/no_access{ + pixel_y = -5 + }, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"dfK" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"dfL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"dfM" = ( +/obj/structure/hedge, +/obj/structure/railing{ + color = "#36373a" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/science/research) +"dfZ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"dgh" = ( +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/security/prison/workout) +"dgj" = ( +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"dgt" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"dgu" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dgy" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/table/glass, +/obj/item/food/cornchips/random, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"dgG" = ( +/turf/open/floor/plating, +/area/station/maintenance/port) +"dgM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"dgN" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"dgQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fitness Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/commons/fitness) +"dgZ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"dhj" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/papercutter{ + pixel_x = 1 + }, +/obj/item/folder/red{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"dhr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dht" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"dhw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"dhy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"dhA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet/security, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"dhB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"dhD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/bed, +/obj/structure/sign/calendar/directional/east, +/obj/item/radio/intercom/prison/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"dhG" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"dhI" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"dhW" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"dhX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos/project) +"die" = ( +/obj/structure/lattice, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dif" = ( +/obj/structure/railing{ + dir = 10; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"dig" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"dis" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"dit" = ( +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Zen Garden" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor/shutters{ + name = "Zen Garden Shutters"; + id = "AIgarden2" + }, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"diw" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/ce) +"diz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/button/door/directional/south{ + id = "Cell4"; + normaldoorcontrol = 1; + specialfunctions = 4; + name = "Cell 4 Doors Bolt Control"; + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"diE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"diF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"diH" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"diI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"diR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"diU" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"diV" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security) +"diX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/mafia, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"djg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"djh" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"djk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/solars/starboard/fore) +"djm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"djp" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"djx" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"djB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"djF" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"djG" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/landmark/start/mime, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"djI" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/wrench, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/crowbar/red, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"djL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"djV" = ( +/obj/item/stack/sheet/iron{ + amount = 30; + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/stack/sheet/glass{ + amount = 30; + pixel_y = 4; + pixel_x = 5 + }, +/obj/structure/closet/crate, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"djZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"dka" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"dkh" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fishstore"; + name = "Fish Store Shutters" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dkj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"dkl" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/hydroponics) +"dkp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/departments/security/directional/east, +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/maintenance/department/security) +"dkq" = ( +/obj/structure/flora/bush/jungle/c/style_random, +/obj/structure/flora/bush/large/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"dkw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/toolcloset, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"dkz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"dkE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/obj/machinery/navbeacon{ + location = "S1-Starboard-Hallway"; + codes_txt = "patrol;next_patrol=S2-Courtroom" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"dkJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"dkK" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"dkQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/flag/nanotrasen/directional/west, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"dkS" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"dlm" = ( +/obj/machinery/navbeacon{ + location = "C4-Port-Central-B"; + codes_txt = "patrol;next_patrol=C1-Fore-Central-Fw" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dlv" = ( +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"dlx" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/telecomms, +/area/station/science/server) +"dlC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"dlG" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"dlH" = ( +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dlI" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/aft) +"dlK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/clothing/head/utility/welding, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dlO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"dlR" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/minisat/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"dlT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"dma" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dml" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"dmn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"dmo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"dms" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"dmt" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/station/maintenance/port/fore) +"dmv" = ( +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dmx" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"dmz" = ( +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"dmB" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dmF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"dmH" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dmM" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"dmN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dmO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dmR" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port) +"dmT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"dmV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/commons/dorms) +"dmW" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/port) +"dnb" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dnd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"dnh" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"dnk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dnl" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dnr" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dnt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dnx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"dnz" = ( +/obj/item/hand_tele{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"dnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dnK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"dnV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#5d341f" + }, +/area/station/service/kitchen/diner) +"dnX" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"doa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"dob" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"doc" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/fore) +"dod" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/item/storage/box/petridish{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/storage/box/syringes{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd","xeno") + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"doi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"doo" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/cable, +/obj/item/cigarette/pipe{ + pixel_x = 0; + pixel_y = -11 + }, +/obj/item/radio/intercom/command, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"dop" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"doy" = ( +/turf/closed/wall, +/area/station/security/prison/workout) +"doC" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"doI" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain) +"doJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"doN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"doQ" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"doR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Atmospherics Emergency Access" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"doZ" = ( +/turf/closed/wall, +/area/station/security/courtroom) +"dpe" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dpi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"dpj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"dpw" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/central) +"dpz" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Law Office Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/law_office, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"dpN" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/range) +"dpR" = ( +/obj/machinery/smartfridge/food, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"dqj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/science/genetics) +"dql" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/head/cone{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"dqm" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"dqo" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/structure/sign/poster/contraband/starkist/directional/north, +/obj/item/flashlight/flare/candle{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"dqq" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dqs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/solars/port/aft) +"dqv" = ( +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/closet/crate, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dqx" = ( +/obj/machinery/grill, +/obj/machinery/newscaster/directional/south, +/obj/item/stack/sheet/mineral/coal/five, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"dqy" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/window/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"dqI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "xeno_airlock_exterior"; + idInterior = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Console"; + req_access = list("xenobiology"); + pixel_y = 27; + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dqK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/medical) +"dqM" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"dqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/chair/stool/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dqR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"dqS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dqT" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"dqV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"dra" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"drc" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dre" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/barber) +"drf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"dri" = ( +/obj/structure/cable, +/obj/structure/sign/calendar/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/cargo) +"drt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"drw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"drB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/service/kitchen) +"drC" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"drE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"drN" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"drU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"drV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"dsd" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"dsh" = ( +/obj/structure/barricade/sandbags{ + color = "#9d1a1a" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"dsn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Detective's Office"; + name = "Detective's Fax Machine" + }, +/obj/structure/detectiveboard/directional/north, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"dsq" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"dst" = ( +/obj/machinery/light/floor, +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/flowers_pp, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"dsw" = ( +/obj/structure/statue/snow/snowman, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"dsx" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/prison) +"dsB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"dsE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"dsG" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher/directional/east{ + id = "Cell 3" + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"dsI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/newspaper, +/obj/item/newspaper{ + pixel_y = 2 + }, +/obj/item/newspaper{ + pixel_y = 4 + }, +/obj/item/cigbutt{ + pixel_y = 9 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"dsJ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"dsN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"dsQ" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"dsZ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dtb" = ( +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dtk" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"dtn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dtr" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire/directional/north, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"dtt" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/range) +"dtu" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"dtx" = ( +/obj/structure/table, +/obj/item/multitool/circuit{ + pixel_x = 7 + }, +/obj/item/multitool/circuit, +/obj/item/multitool/circuit{ + pixel_x = -8 + }, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"dtA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/kirbyplants/random, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"dtG" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/medkit{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/storage/medkit{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/healthanalyzer{ + pixel_x = 4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4 + }, +/turf/open/floor/circuit/green, +/area/station/science/robotics/lab) +"dtJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"dtO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Fuel Pipe" + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dtW" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"dtX" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"dui" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/prison) +"dun" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"duq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dut" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/directions/upload/directional/north{ + pixel_y = 24; + dir = 9 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 9 + }, +/obj/structure/sign/directions/vault/directional/north{ + pixel_y = 40; + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"duv" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/greater) +"duA" = ( +/obj/effect/decal/cleanable/rubble, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"duD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/construction/mining/aux_base) +"duE" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"duF" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"duM" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"duT" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"duV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"dvc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/landmark/navigate_destination/library, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dvi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"dvn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"dvo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/service/chapel/funeral) +"dvp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dvu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron, +/area/station/cargo/storage) +"dvv" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dvw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/project) +"dvA" = ( +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"dvF" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"dvG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/periodic_table/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"dvN" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"dvR" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"dvT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron, +/area/station/service/kitchen) +"dwc" = ( +/obj/structure/lattice, +/obj/structure/railing{ + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"dwk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"dwl" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/contraband/prison, +/obj/machinery/firealarm/directional/north, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"dws" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/cable, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"dwF" = ( +/obj/structure/cable, +/obj/structure/holosign/barrier/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"dwL" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"dwM" = ( +/obj/vehicle/sealed/mecha/ripley/paddy/preset, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/recharge_floor, +/area/station/security/mechbay) +"dxc" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"dxf" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dxm" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"dxq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"dxu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"dxB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dxF" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/directional/north, +/obj/structure/table/optable, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/education) +"dxH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dxI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"dxJ" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/filingcabinet, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"dxM" = ( +/obj/effect/decal/cleanable/ash{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/cigbutt/roach{ + pixel_x = -10 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"dxX" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dxY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/spawner/random/vending/colavend, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dya" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dyb" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"dyc" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/ticket_machine/directional/north, +/obj/machinery/light/directional/north, +/obj/item/banner/command/mundane, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"dyd" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"dym" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Containment Pen #8"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dyt" = ( +/obj/item/clothing/under/suit/red, +/obj/item/clothing/suit/toggle/lawyer/black, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/under/suit/black_really, +/obj/item/clothing/neck/tie/black, +/obj/structure/table/glass, +/turf/open/floor/glass/reinforced, +/area/station/commons/dorms/laundry) +"dyy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dyz" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"dyB" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/departments/genetics/directional/west, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"dyD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dyN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/science/lower) +"dyP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"dyV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/smartfridge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/stone, +/area/station/service/hydroponics) +"dyW" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"dzc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater) +"dzh" = ( +/obj/structure/stairs/north{ + color = "#5d341f" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"dzk" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/maintenance/department/bridge) +"dzp" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/safety_eye_protection/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/door/window/right/directional/north{ + name = "Shield Wall Generator Storage"; + req_access = list("teleporter") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"dzs" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"dzu" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"dzB" = ( +/obj/machinery/light/floor, +/turf/open/floor/glass/reinforced, +/area/station/medical/morgue) +"dzE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"dzI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/cargo/warehouse) +"dzK" = ( +/obj/structure/rack, +/obj/machinery/airalarm/directional/north, +/obj/item/analyzer, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"dzU" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"dzZ" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"dAa" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P6-Service-Hallway"; + codes_txt = "patrol;next_patrol=P7-Service-Hallway" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dAb" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"dAd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/fireplace, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"dAh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dAi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dAl" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/medical) +"dAp" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dAq" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"dAx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"dAy" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"dAE" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dAH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Pool Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"dAJ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"dAL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dAM" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/box/white{ + color = "#dab4de" + }, +/turf/open/floor/iron/white/small, +/area/station/science/research) +"dAO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Access Shutter"; + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"dAT" = ( +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_y = 37; + pixel_x = 11 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/structure/fireplace, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/stone, +/area/station/commons/dorms) +"dBb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"dBc" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"dBd" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/flora/rock/icy/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 1 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"dBe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dBg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"dBm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"dBo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dBp" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/fullgrass, +/turf/open/floor/grass, +/area/station/commons/locker) +"dBt" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"dBu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/breakroom) +"dBE" = ( +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dBF" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"dBH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"dBL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/machinery/button/door/directional/south{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access = list("teleporter") + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"dBT" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/reagent_containers/cup/soup_pot{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/thermometer{ + pixel_x = 9; + pixel_y = 7 + }, +/turf/open/floor/iron/smooth_corner{ + dir = 8 + }, +/area/station/maintenance/department/bridge) +"dBU" = ( +/obj/effect/turf_decal/trimline/blue/filled/shrink_cw, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"dCb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"dCf" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"dCi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"dCj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dCk" = ( +/obj/structure/marker_beacon/purple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dCq" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/starboard) +"dCs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"dCz" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dCA" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"dCE" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"dCI" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/cafeteria) +"dCZ" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"dDn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dDs" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"dDv" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"dDw" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dDz" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"dDE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"dDQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos) +"dDT" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dEc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"dEf" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"dEh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"dEj" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Detention Cell Access"; + req_access = list("brig") + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"dEs" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#4874A2" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"dEt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"dEw" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/port) +"dEF" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"dEG" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/noticeboard/directional/north{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"dEI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"dEJ" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"dEM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dEO" = ( +/obj/machinery/plate_press, +/obj/structure/sign/poster/official/work_for_a_future/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"dER" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/cargo/warehouse) +"dEV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/machinery/door/window/right/directional/east{ + name = "Arcade Master Access" + }, +/obj/item/stack/arcadeticket, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"dFa" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"dFb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"dFc" = ( +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"dFi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dFl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"dFq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"dFr" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "Law Office Shutters" + }, +/turf/open/floor/plating, +/area/station/service/lawoffice) +"dFs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "qmprivacy"; + name = "Privacy Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"dFw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"dFG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Mass Driver Door"; + req_access = list("ordnance") + }, +/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{ + pixel_x = -26 + }, +/turf/open/floor/iron/stairs/medium, +/area/station/science/ordnance/testlab) +"dFJ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"dFM" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"dFY" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/research) +"dGi" = ( +/obj/structure/sign/poster/contraband/waffle_corp_rifles/directional/east, +/obj/structure/hedge, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"dGk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"dGu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/north{ + name = "Containment Pen #6"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"dGx" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/railing, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"dGy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"dGR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + location = "P3-Service-Hallway"; + codes_txt = "patrol;next_patrol=P4-Service-Hallway" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dGT" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/chair/stool/bar/directional, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"dGY" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"dHe" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"dHj" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"dHm" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/office) +"dHo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"dHs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/explab) +"dHw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"dHB" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"dHJ" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/brig) +"dHM" = ( +/obj/machinery/power/turbine/turbine_outlet{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"dHN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dHO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"dHT" = ( +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"dHU" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/book/bible, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"dHZ" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dId" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"dIe" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dIf" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/station/command) +"dIj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/airlock/mining{ + name = "Cargo Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"dIr" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"dIs" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"dIx" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dIG" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical Cold Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/structure/cable, +/obj/structure/curtain, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"dIN" = ( +/turf/closed/wall, +/area/station/security/prison) +"dIW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/d_day_promo/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"dJf" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/theater) +"dJg" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"dJs" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dJu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dJI" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"dJJ" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"dJT" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"dJU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"dJV" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dKb" = ( +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"dKh" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dKr" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"dKA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"dKD" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"dKF" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/grass, +/area/station/maintenance/department/security) +"dKG" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/poster/official/jim_nortons/directional/north, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"dKK" = ( +/obj/structure/table, +/obj/item/clothing/head/utility/hardhat{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/storage/bag/construction{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dKQ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"dKS" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/station/science/lower) +"dKW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dLb" = ( +/turf/open/floor/iron/stairs/right, +/area/station/engineering/gravity_generator) +"dLe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"dLg" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/station/command) +"dLj" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"dLl" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/west{ + req_access = list("pharmacy"); + name = "Pharmacy Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmacy_shutters"; + name = "Pharmacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"dLA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"dLK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"dLQ" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"dMb" = ( +/obj/machinery/door/airlock{ + name = "Kitchen Cold Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/coldroom) +"dMg" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/sign/warning/cold_temp/directional/south, +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dMi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"dMo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"dMp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"dMw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dMD" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/railing/corner{ + dir = 4; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"dMM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"dMW" = ( +/turf/closed/wall, +/area/station/service/kitchen/diner) +"dNd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/requests_console/directional/east{ + department = "Xenobiology"; + name = "Xenobiology Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"dNf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/engine_smes) +"dNg" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/sign/calendar/directional/west, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"dNh" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"dNj" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/atmos/storage) +"dNk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"dNl" = ( +/turf/open/openspace, +/area/station/maintenance/department/cargo) +"dNp" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dNw" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"dNG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"dNH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dNI" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"dNO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/central) +"dNW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"dNX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dOa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"dOc" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/requests_console/directional/north{ + department = "Cargo Bay"; + name = "Cargo Bay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"dOf" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood, +/obj/item/clothing/glasses/blindfold{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"dOi" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"dOl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"dOn" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/spawner/random/trash, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dOr" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dOv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/central) +"dOw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"dOy" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"dOK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dOM" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"dON" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/command, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"dOR" = ( +/obj/structure/hedge, +/obj/structure/marker_beacon/lime, +/obj/machinery/light/small/directional/south, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"dOT" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/tank_holder/oxygen/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"dOV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"dOZ" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"dPk" = ( +/obj/structure/toilet/greyscale{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"dPm" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dPn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dPt" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/steam_vent, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"dPu" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid10" + }, +/area/space/nearstation) +"dPx" = ( +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) +"dPz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"dPE" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"dPF" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"dPP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"dPQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"dPS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"dPU" = ( +/obj/structure/curtain/cloth/fancy, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"dPW" = ( +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"dQa" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/no_nightlight/directional/south, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/blue, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"dQi" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/stairs/medium{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"dQk" = ( +/obj/effect/turf_decal/trimline/dark/end, +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"dQm" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"dQq" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/sign/warning/cold_temp/directional/north, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"dQv" = ( +/obj/structure/table, +/obj/item/food/grown/poppy{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"dQw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"dQH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dQJ" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"dQL" = ( +/obj/docking_port/stationary{ + dheight = 4; + dwidth = 4; + height = 9; + name = "Aux Base Zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + shuttle_id = "aux_base_zone"; + width = 9; + dir = 4 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"dQO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"dQP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"dQQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"dQV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"dQY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"dRl" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"dRq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"dRs" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"dRy" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/boutique) +"dRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/security/breakroom) +"dRG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dRI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dRN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/office) +"dRR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dRS" = ( +/obj/item/plant_analyzer, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/machinery/hydroponics/soil, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/grass{ + icon_state = "grass1" + }, +/area/station/security/prison/garden) +"dRW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"dRZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/space/openspace, +/area/space/nearstation) +"dSn" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/general, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Medbay Junction" + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"dSp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"dSq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/department/bridge) +"dSt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"dSx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/camera/autoname/directional/west{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"dSA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"dSC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"dSE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/paper, +/obj/item/paper, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south{ + pixel_x = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"dSH" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/neutral/end{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"dSJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"dSN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/worn_out/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"dTf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"dTi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/clipboard{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/obj/structure/secure_safe/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"dTr" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Blast Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"dTu" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"dTE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"dTJ" = ( +/obj/item/toy/plush/rouny{ + dir = 4; + pixel_y = 8; + pixel_x = -3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"dTN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/red/dim/directional/east, +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"dTP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"dTR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"dTS" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"dTT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"dTX" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"dTY" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/structure/sign/poster/official/fruit_bowl/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"dUb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"dUd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/breakroom) +"dUe" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"dUg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"dUk" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"dUr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"dUt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"dUu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dUz" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"dUD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"dUK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/port) +"dUM" = ( +/obj/machinery/fishing_portal_generator, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/rush_propaganda/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"dUR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"dUV" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"dUW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"dUX" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"dVh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/item/newspaper, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"dVi" = ( +/obj/item/clothing/shoes/ducky_shoes{ + name = "Quackins" + }, +/turf/open/water/beach, +/area/station/commons/fitness/recreation/pool) +"dVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ripped/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"dVp" = ( +/turf/closed/wall/r_wall, +/area/station/security/evidence) +"dVq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"dVu" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"dVD" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/cargo/drone_bay) +"dVF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"dVG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"dVI" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/solars/port/aft) +"dVJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/plate/small{ + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"dVQ" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"dVR" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"dVW" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_b) +"dVZ" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"dWd" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/science/breakroom) +"dWh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/hallway/primary/fore) +"dWn" = ( +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"dWo" = ( +/turf/open/openspace, +/area/station/service/library/upper) +"dWu" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/sign/poster/contraband/have_a_puff/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"dWA" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/security/brig) +"dWH" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"dWI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"dWK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"dWL" = ( +/obj/structure/table/wood, +/obj/structure/desk_bell{ + pixel_x = -17; + pixel_y = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = 16 + }, +/obj/item/clipboard, +/obj/item/pen/fountain, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dWM" = ( +/obj/machinery/vending/assist, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"dWV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/structure/chair/sofa/bench/right, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dXh" = ( +/obj/structure/flora/rock/pile/jungle/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"dXn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_shutters_parlour"; + name = "Chapel Shutters" + }, +/turf/open/floor/plating, +/area/station/service/chapel/funeral) +"dXq" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/edge, +/area/station/security/prison) +"dXu" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"dXB" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"dXD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"dXE" = ( +/obj/machinery/telecomms/server/presets/medical, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"dXF" = ( +/obj/machinery/door/airlock/wood{ + name = "Meditation Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"dXK" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"dXM" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Unit 3" + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"dXP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"dXQ" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/servingdish, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -3; + pixel_y = -14 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 3; + pixel_y = -14 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"dXW" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dXX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"dXY" = ( +/obj/machinery/deepfryer, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"dYb" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"dYf" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"dYi" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dYp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"dYr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark_blue/warning, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"dYy" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dYz" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"dYA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"dYB" = ( +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/parquet, +/area/station/maintenance/starboard/central) +"dYI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"dYK" = ( +/obj/effect/decal/cleanable/wrapping/pinata, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"dYN" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"dYU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth{ + color = "#f58ada" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"dZa" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"dZb" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dZf" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/airlock/command{ + name = "Command Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command) +"dZj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"dZk" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"dZl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 24; + pixel_x = 5 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"dZr" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"dZu" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"dZC" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/machinery/vending/wallmed/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"dZF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"dZN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/side{ + dir = 2 + }, +/area/station/service/kitchen) +"dZQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair/sofa/bench/right, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"dZR" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"dZU" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 5 + }, +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"dZV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"dZX" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"eab" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ead" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/storage/box/stickers, +/obj/item/storage/box/stickers/googly, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"eak" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"eao" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/effect/landmark/navigate_destination/janitor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"eaq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"eas" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"eav" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/engineering/supermatter/room/upper) +"eaw" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/marker_beacon/lime, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"eax" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/meter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eaA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/item/cigbutt, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"eaI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"eaN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_y = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"eaO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eaQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eaS" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"ebc" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/science/breakroom) +"ebd" = ( +/obj/structure/cable, +/obj/item/reagent_containers/cup/glass/coffee/no_lid{ + pixel_y = 13; + pixel_x = 6 + }, +/obj/machinery/digital_clock/directional/north, +/obj/effect/decal/cleanable/food/plant_smudge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ebe" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"ebr" = ( +/obj/structure/hedge/opaque, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/office) +"ebE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"ebQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitory Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ebS" = ( +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"ebX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ebZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ecf" = ( +/obj/structure/table, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"ech" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eci" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Auxiliry Dock Maintainence" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"ecj" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/airlock_controller/incinerator_ordmix{ + pixel_y = 25 + }, +/obj/machinery/button/ignition/incinerator/ordmix{ + pixel_y = -24; + pixel_x = 6 + }, +/obj/machinery/button/door/incinerator_vent_ordmix{ + pixel_x = -6; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"ecs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"ecw" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ecB" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ecE" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/bluespace_vendor/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"ecG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"ecL" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ecO" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ecQ" = ( +/obj/item/folder/yellow, +/obj/item/airlock_painter, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/engineering/storage) +"ecT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"ecV" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"ecW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"ecY" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"edt" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/robotics/mechbay) +"edw" = ( +/obj/structure/flora/bush/jungle/c/style_2, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/commons/dorms) +"edx" = ( +/turf/closed/wall/r_wall, +/area/station/security/holding_cell) +"edz" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"edD" = ( +/mob/living/basic/goat/pete, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"edF" = ( +/obj/machinery/modular_computer/preset/cargochat/medical, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/requests_console/auto_name/directional/north{ + name = "Medbay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/sign/poster/official/moth_meth/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"edK" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene2"; + name = "Secondary Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/genetics) +"edN" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"edR" = ( +/obj/structure/firelock_frame, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"edV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"eea" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"eeb" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"eec" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 6 + }, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"eeg" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"eel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/explosives/alt/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"eep" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"eeu" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"eev" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eeA" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"eeC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/medical/office) +"eeG" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"eeH" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"eeL" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/granter/action/spell/smoke/lesser{ + name = "mysterious old book of cloud-chasing" + }, +/obj/item/nullrod, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"eeO" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"efj" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"efm" = ( +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/marker_beacon/teal, +/turf/open/floor/grass, +/area/station/medical/medbay/lobby) +"efr" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"efA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"efC" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/wood, +/obj/item/stamp/head/hop{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/paper_bin/carbon{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/pen/fountain{ + pixel_y = 3; + pixel_x = -4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"efF" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"efG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/genetics) +"efH" = ( +/obj/machinery/door/window/brigdoor/right/directional/east{ + name = "Tertiary AI Core Access"; + req_access = list("ai_upload"); + pixel_x = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/caution/white{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_y = 26 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"efL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/starboard) +"efQ" = ( +/obj/machinery/computer/bank_machine, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"efX" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"efZ" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"egd" = ( +/obj/structure/rack, +/obj/item/vending_refill/security, +/obj/item/storage/box/handcuffs, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/flashes{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"egg" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"egh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"egi" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/east{ + name = "Private Channel"; + frequency = 1447; + broadcasting = 1 + }, +/obj/machinery/camera/autoname/motion/directional/east{ + network = list("aiupload") + }, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"egn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"egr" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/kitchen/rollingpin, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"egs" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/rock/pile/style_2, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/structure/flora/tree/dead/style_3{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/structure/marker_beacon/yellow, +/turf/open/misc/hay, +/area/station/maintenance/starboard/central) +"egu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"egy" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/port) +"egA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/trimline/brown/line, +/obj/item/banner/cargo/mundane, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/cargo/lower) +"egF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/security/prison) +"egM" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"egQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"ehb" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("command"); + name = "Command Supply Access" + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ehk" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"ehn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"eho" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/warning/directional/west, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ehp" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"ehu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/cargo/warehouse) +"ehw" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"ehz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"ehF" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/modular_computer/preset/civilian{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"ehH" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"ehI" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"ehZ" = ( +/turf/open/floor/glass, +/area/station/hallway/primary/port) +"eih" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"eis" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/book/bible{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"eiA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/aft/greater) +"eiC" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/station/cargo/storage) +"eiF" = ( +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"eiG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/helmet/space{ + pixel_x = 6; + pixel_y = -10 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"eiM" = ( +/obj/structure/closet/wardrobe/miner, +/obj/item/storage/backpack/satchel/explorer, +/obj/effect/turf_decal/bot_white, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"eiU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eiW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eiY" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_br, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"ejb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"ejl" = ( +/obj/structure/broken_flooring/singular/directional/east, +/obj/item/clothing/head/utility/hardhat{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ejm" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"ejn" = ( +/turf/closed/wall, +/area/station/commons/dorms) +"ejs" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/structure/hedge, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/aft) +"ejt" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/cytology{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/biopsy_tool{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/clothing/gloves/latex{ + pixel_y = -13 + }, +/obj/item/clothing/mask/surgical{ + pixel_y = -12 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"ejw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"ejz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/hydroponics/garden) +"ejC" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ejG" = ( +/obj/item/clothing/head/fedora/carpskin, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"ejI" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ejN" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ejP" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/safe) +"ejQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ejS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"ejT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/costume/party, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ejV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ejY" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"ekb" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/item/toy/foamblade, +/obj/structure/sign/clock/directional/west, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"ekf" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"ekj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"ekk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ekr" = ( +/obj/structure/stairs/west{ + color = "#3d3e42" + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"eks" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/genetics, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab" + }, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"ekt" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eky" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"ekz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Engineering" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/engineering) +"ekB" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"ekC" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) +"ekD" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/command) +"ekH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"ekX" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) +"eld" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"elf" = ( +/obj/structure/hedge, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"elj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ell" = ( +/obj/structure/disposaloutlet, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"elt" = ( +/obj/structure/sign/chalkboard_menu, +/turf/closed/wall/r_wall, +/area/station/security/prison) +"elv" = ( +/obj/structure/railing, +/turf/open/openspace, +/area/station/service/chapel/funeral) +"elx" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"elz" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"elB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"elF" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"elI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"elL" = ( +/obj/structure/chair/stool/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"elN" = ( +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"elV" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/cable, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"elZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"emn" = ( +/obj/structure/flora/bush/lavendergrass, +/obj/structure/flora/tree/jungle/small/style_4, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"emp" = ( +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/west, +/obj/structure/hedge, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"emv" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"emU" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"emW" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"emX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"emZ" = ( +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"enb" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"eng" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"enl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"enq" = ( +/obj/structure/chair/sofa/bamboo/right{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"eny" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"enD" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"enE" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"enG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"enJ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"enK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"enS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eod" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/interrogation) +"eoe" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"eof" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/cmo) +"eoi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eok" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"eol" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"eov" = ( +/obj/effect/turf_decal/siding/dark/end, +/obj/structure/table/glass, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/machinery/cell_charger, +/obj/machinery/ecto_sniffer{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/circuit/green, +/area/station/science/robotics/lab) +"eoI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"eoL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"eoO" = ( +/turf/closed/wall, +/area/station/science/ordnance/bomb) +"eoS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/brig) +"eoU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/commons/dorms) +"epa" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 5 + }, +/obj/item/radio/intercom/command/directional/north, +/obj/machinery/smartfridge/food, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/command/corporate_suite) +"epc" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"epe" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"epf" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"epg" = ( +/obj/structure/mecha_wreckage/gygax, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"epD" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant1, +/obj/machinery/light/small/directional/south, +/obj/machinery/button/door{ + desc = "A door remote control switch for the interior brig doors."; + id = "innerbrig"; + name = "Brig Interior Door Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -26; + req_access = list("security") + }, +/obj/machinery/button/door{ + desc = "A door remote control switch for the exterior brig doors."; + id = "outerbrig"; + name = "Brig Exterior Door Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -26; + req_access = list("security") + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the cell windows."; + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = 6; + pixel_y = -36; + req_access = list("security"); + specialfunctions = 4 + }, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flasher"; + pixel_y = -36; + req_access = list("security"); + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"epE" = ( +/obj/structure/broken_flooring/pile/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"epF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/virology) +"epP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -5 + }, +/obj/machinery/button/door/directional/west{ + pixel_y = 6; + id = "prisonereducation"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"epY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"eqb" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/commons/vacant_room/commissary) +"eqd" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/computer/pandemic, +/obj/machinery/requests_console/directional/north{ + department = "Virology"; + name = "Virology Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/ore_update, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"eqi" = ( +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"eqm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/wood/large, +/area/station/service/library) +"eqr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"eqs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"eqC" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"eqF" = ( +/obj/structure/cable, +/obj/machinery/navbeacon{ + location = "S3-Starboard-Hallway"; + codes_txt = "patrol;next_patrol=S4-Command-Lobby" + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/starboard) +"eqN" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/structure/railing{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/analyzer, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/item/book/manual/wiki/ordnance, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"eqO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"eqT" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"eqZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/maintenance/aft/greater) +"ere" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"erg" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hooded/wintercoat/science{ + pixel_y = 8 + }, +/obj/item/clothing/shoes/winterboots{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"erh" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"eri" = ( +/turf/open/space/openspace, +/area/space/nearstation) +"erl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"erp" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"erq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/radshelter/civil) +"ert" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eru" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"erJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"erK" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"erL" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"erO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"erP" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"erT" = ( +/obj/item/clothing/glasses/hud/security/sunglasses/gars{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses/gars{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot/left, +/obj/structure/rack, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"esg" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"esm" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"esn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/cmo) +"eso" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/thunderdrome/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"esy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/sign/warning/test_chamber/directional/east, +/turf/open/floor/iron/white, +/area/station/science/lower) +"esC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"esF" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom/command/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"esG" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"esJ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"esO" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"esT" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/structure/railing, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/cargo) +"esU" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/command) +"etc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"ete" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Elevator"; + elevator_mode = 1; + transport_linked_id = "SecElevator" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"etg" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/filingcabinet, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"etq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"ets" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"ett" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid7" + }, +/area/space/nearstation) +"etx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/stairs/left{ + dir = 8; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/central) +"etz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"etF" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness) +"etG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"etK" = ( +/obj/effect/decal/cleanable/wrapping/pinata, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"etO" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/landmark/start/hangover, +/obj/machinery/flasher/directional/east{ + pixel_y = 24; + id = "Cell 1" + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"etT" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair/stool/directional/south, +/obj/structure/sign/poster/random/directional/north, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"etX" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"euf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/starboard) +"eum" = ( +/obj/structure/cable, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"euB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Supply Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"euF" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"euH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"euI" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/security/prison) +"euO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/sign/departments/telecomms/alt/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/contraband/thunderdrome/directional/west, +/obj/item/shell/server, +/turf/open/floor/circuit/green, +/area/station/maintenance/starboard/fore) +"euQ" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"euX" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"euZ" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) +"evk" = ( +/obj/machinery/atmospherics/components/unary/bluespace_sender, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"evu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 15; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 15; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"evz" = ( +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"evC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"evP" = ( +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"evQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"evT" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"evU" = ( +/obj/structure/sign/clock/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/chair/office, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"evZ" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"ewa" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"ewj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/item/toy/plush/lizard_plushie/space, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ewn" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/wood, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/pen/fountain{ + pixel_y = 4; + pixel_x = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"ewo" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"ewt" = ( +/turf/closed/wall, +/area/space/nearstation) +"eww" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"ewE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"ewF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ewH" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"ewN" = ( +/obj/structure/displaycase/trophy, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"ewO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/window/left/directional/east{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "pharmacy_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"ewV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ewW" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"exb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"exe" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos) +"exg" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"exj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"exr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/bush/ferny/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ext" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"exx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/science) +"exz" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hop) +"exD" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Cafe" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/cafeteria) +"exI" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"exP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"exS" = ( +/obj/effect/decal/cleanable/ash, +/obj/structure/cable, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"exU" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"exV" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"exW" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eyd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"eyj" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses"; + pixel_y = 15 + }, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"eym" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/stack/spacecash/c1{ + pixel_x = 12; + pixel_y = -5 + }, +/obj/item/stack/spacecash/c10{ + pixel_y = 9 + }, +/obj/item/poster/tail_board{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"eyq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"eyr" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"eyE" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/machinery/navbeacon{ + location = "C1-Fore-Central-B"; + codes_txt = "patrol;next_patrol=C2-Starboard-Central-Fw" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eyO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"eyQ" = ( +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/central) +"eyR" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/item/radio/off{ + pixel_x = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"eyY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"eza" = ( +/obj/effect/turf_decal/trimline/blue/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"ezj" = ( +/obj/machinery/door/airlock{ + id_tag = "LDorm1"; + name = "Luxury Cabin 1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"ezk" = ( +/obj/structure/table/wood, +/obj/machinery/computer/pod/old{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"ezu" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"ezv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"ezF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"ezG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/showcase/machinery/tv/broken, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"ezJ" = ( +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"ezU" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"eAb" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/sign/directions/evac/directional/north{ + pixel_x = 0; + pixel_y = 26; + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"eAc" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"eAi" = ( +/turf/closed/wall, +/area/station/medical/coldroom) +"eAj" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"eAo" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/cargo/lobby) +"eAq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light_switch/directional/north, +/obj/item/stack/rods/two, +/obj/item/stack/cable_coil/five, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/mechbay) +"eAs" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"eAw" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"eAy" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/item/toy/figure/bartender{ + pixel_y = 17; + pixel_x = -1 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"eAz" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eAC" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room/upper) +"eAK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/filingcabinet/security, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"eAL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eAW" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Atmos to Loop" + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eAZ" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eBd" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/tree/jungle/small/style_4, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/library/upper) +"eBg" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/aft) +"eBj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"eBn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"eBo" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/maintenance/starboard/central) +"eBs" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"eBu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/station/science/breakroom) +"eBy" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"eBC" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"eBJ" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"eBM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) +"eBT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"eBW" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Service Deliveries"; + req_access = list("service") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"eBX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"eCa" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"eCc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "janigarbage" + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/janitor) +"eCh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/closet/crate/mod, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"eCl" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"eCm" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"eCA" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"eCC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/closet/secure_closet/psychology, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/fish_feed, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"eCE" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eCH" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/chair/stool/directional/south, +/obj/item/cigbutt, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"eCJ" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"eCK" = ( +/obj/machinery/drone_dispenser, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eCM" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"eCS" = ( +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/cup/watering_can, +/obj/structure/table/glass, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"eCU" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eDa" = ( +/turf/closed/wall/r_wall, +/area/station/command/teleporter) +"eDh" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"eDl" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Clinic" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/lobby) +"eDo" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/commons/storage/primary) +"eDp" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"eDr" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"eDs" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"eDA" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"eDF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"eDH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"eDI" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"eDK" = ( +/obj/machinery/gibber, +/obj/machinery/light/cold/directional/south, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"eDV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"eDX" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"eEc" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"eEe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"eEf" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"eEg" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"eEj" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"eEq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"eEr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/bookcase/random, +/obj/item/flashlight/lamp/green{ + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eEs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"eEu" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/bitrunner, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"eEv" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"eEx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/directions/evac/directional/north{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"eEA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"eEB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"eED" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/fore/greater) +"eEP" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"eEQ" = ( +/turf/open/floor/iron/stairs/left{ + color = "#5d341f"; + dir = 1 + }, +/area/station/command/heads_quarters/captain) +"eEZ" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness) +"eFd" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/security/armory) +"eFf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"eFn" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"eFw" = ( +/obj/structure/railing, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"eFy" = ( +/obj/structure/reagent_dispensers/plumbed, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"eFE" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"eFK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"eGd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"eGg" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","tcomms") + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"eGi" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/tank_dispenser, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"eGm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"eGq" = ( +/obj/machinery/atmospherics/components/tank, +/obj/structure/sign/poster/official/wtf_is_co2/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"eGr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"eGu" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eGv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"eGx" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box/red, +/obj/machinery/light/cold/directional/south, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"eGB" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/dim/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eGI" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"eGN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot/right, +/obj/effect/turf_decal/trimline/purple, +/obj/item/reagent_containers/cup/bucket, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"eGU" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"eGW" = ( +/obj/structure/transport/linear/public, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"eGZ" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"eHc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eHd" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"eHo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/range) +"eHv" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"eHx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/head/costume/fancy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"eHA" = ( +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"eHB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"eHQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"eHT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"eHY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/machinery/smoke_machine, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eIk" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/sign/departments/chemistry/pharmacy/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"eIo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5; + color = "#683d21" + }, +/obj/structure/chair/wood/wings{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"eIp" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"eIq" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"eIs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/storage) +"eIu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"eIA" = ( +/obj/structure/sign/departments/morgue/directional/south, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"eIB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/comfy/brown, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"eIC" = ( +/obj/structure/hedge, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"eID" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"eIE" = ( +/turf/open/floor/bamboo, +/area/station/ai_monitored/aisat/exterior) +"eIH" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_y = 14; + pixel_x = -3 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"eIQ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"eIS" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/sign/poster/official/random/directional/north, +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/iron/dark, +/area/station/command) +"eIT" = ( +/obj/structure/fence/door/opened, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eIU" = ( +/obj/machinery/door/airlock/maintenance/glass, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"eIY" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/stack/wrapping_paper{ + pixel_y = 4 + }, +/obj/item/dest_tagger{ + pixel_y = 2 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"eJb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"eJe" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/dice, +/obj/effect/spawner/random/entertainment/deck, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/science/breakroom) +"eJi" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/table, +/obj/machinery/microwave, +/obj/structure/sign/poster/contraband/donk_co/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/medical/pharmacy) +"eJn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -10; + pixel_y = -5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eJI" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"eJN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark_red/corner, +/obj/effect/turf_decal/box/red/corners, +/obj/structure/railing/corner{ + color = "#4874A2" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"eJT" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Secure Art Exhibition"; + req_access = list("library") + }, +/obj/item/mod/paint{ + pixel_x = 0; + pixel_y = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"eJZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"eKb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"eKd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"eKf" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"eKi" = ( +/obj/structure/railing, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/service/chapel/funeral) +"eKk" = ( +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"eKp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eKs" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"eKx" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/medical/office) +"eKy" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/service/library) +"eKB" = ( +/obj/effect/turf_decal/siding/dark, +/obj/machinery/chem_heater/withbuffer, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"eKC" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"eKI" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"eKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"eKQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/red/dim/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"eKU" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"eKV" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"eKY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red, +/obj/structure/noticeboard/directional/south{ + pixel_y = -25 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/breakroom) +"eKZ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"eLb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"eLh" = ( +/obj/effect/turf_decal/trimline/brown/filled/end, +/obj/machinery/vending/custom, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 2 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"eLi" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"eLm" = ( +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eLo" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair/stool/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/science/research) +"eLB" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"eLJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/smooth_edge, +/area/station/security/prison/workout) +"eLM" = ( +/obj/machinery/disposal/bin{ + pixel_y = -2 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/abductor/ayy_no/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"eLN" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/spawner/xmastree, +/obj/structure/marker_beacon/lime, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/grass, +/area/station/commons/dorms) +"eLO" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/maintenance/department/security) +"eLT" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"eLU" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"eLW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"eMg" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/machinery/requests_console/directional/west{ + department = "Ordnance Test Range"; + name = "Test Range Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/item/computer_disk{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/computer_disk{ + pixel_y = 1 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"eMn" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"eMs" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"eMJ" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eMN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/lesser) +"eMP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"eMS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"eMU" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"eMV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"eMW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"eMY" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/weather/snow, +/obj/structure/sign/poster/official/twenty_four_seven/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"eNg" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"eNo" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"eND" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"eNE" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"eNF" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/hedge, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"eNG" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"eNJ" = ( +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"eNN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ff8080" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"eNS" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"eNT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/solars/starboard/fore) +"eNX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"eOb" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port) +"eOc" = ( +/obj/item/stack/cable_coil/five, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"eOi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"eOo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/locker) +"eOq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + name = "Captain's Requests Console"; + department = "Captain's Desk" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"eOt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/vending/snack/green, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"eOx" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/chair, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"eOz" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/primary/aft) +"eOF" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"eOK" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"eOM" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"eOO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"eOW" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"ePb" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/port/central) +"ePc" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"ePk" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal) +"ePw" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"ePx" = ( +/obj/machinery/computer/accounting, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"ePD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"ePF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"ePM" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/machinery/navbeacon{ + location = "S6-Command-Lobby"; + codes_txt = "patrol;next_patrol=S7-Command-Lobby" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"ePN" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/button/door{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"ePU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/dorms) +"ePY" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/fluff/paper/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eQl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/cargo/office) +"eQn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/port) +"eQo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/red, +/area/station/service/library) +"eQu" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/contraband/kudzu/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"eQG" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/door/window/left/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"eQL" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eQY" = ( +/obj/item/toy/plush/slimeplushie{ + name = "Mimo" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"eRh" = ( +/turf/closed/wall, +/area/station/science/lobby) +"eRi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"eRk" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"eRn" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"eRp" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"eRq" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"eRx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eRG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/safe) +"eRI" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"eRO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eRP" = ( +/obj/machinery/smartfridge/food, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"eRS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"eRT" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"eRW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bed/double{ + dir = 1 + }, +/obj/item/bedsheet/hop/double{ + dir = 1 + }, +/obj/structure/sign/clock/directional/west, +/obj/item/toy/plush/beeplushie, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"eRX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small/red/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"eSb" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"eSd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"eSj" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eSk" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eSl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"eSx" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"eSD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"eSJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"eSM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"eSN" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"eSO" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/prison) +"eSQ" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/transport/linear/public, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"eSU" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ff66ff" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"eTd" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"eTe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"eTh" = ( +/obj/structure/chair/stool/directional/south{ + pixel_y = 21 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 34 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/light/small/dim/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/barber) +"eTo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_red/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/chapel/funeral) +"eTp" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"eTv" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"eTE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/hfr_room) +"eTG" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"eTJ" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_x = 2 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_x = 8 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 13; + pixel_x = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"eTP" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/department/bridge) +"eTU" = ( +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"eTZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"eUa" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"eUh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eUn" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/security/brig) +"eUt" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eUv" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"eUC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"eUD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"eUE" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"eUJ" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"eUK" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/cup/bottle/morphine, +/obj/item/reagent_containers/syringe, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"eUN" = ( +/obj/effect/turf_decal/bot, +/obj/structure/guncase/ecase{ + open = 0; + anchored = 1 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"eUS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/project) +"eUT" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"eUV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"eUX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eVb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/landmark/start/bitrunner, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"eVc" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"eVd" = ( +/obj/structure/filingcabinet, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"eVf" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access = list("chapel_office") + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"eVi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/briefcase/secure, +/obj/item/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"eVm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"eVo" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lower) +"eVu" = ( +/obj/machinery/light/no_nightlight/directional/south, +/turf/open/floor/iron/white, +/area/station/science/research) +"eVz" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/command) +"eVG" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/radio/entertainment/speakers/physical{ + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/radio{ + pixel_y = 5; + pixel_x = -7 + }, +/obj/item/radio/weather_monitor{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"eVI" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"eVJ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"eVP" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"eVR" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eVS" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eVT" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"eVY" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"eVZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"eWg" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/disposal) +"eWh" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/digital_clock/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"eWv" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/item/feather{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/dim/directional/south, +/obj/item/reagent_containers/cup/bottle{ + icon_state = "burner"; + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"eWy" = ( +/obj/structure/sign/departments/telecomms/directional/west, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"eWA" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"eWG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"eWL" = ( +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/white, +/area/station/science/research) +"eWP" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"eXe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"eXj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"eXx" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/service/kitchen) +"eXC" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"eXG" = ( +/obj/structure/sign/warning/cold_temp/directional/east, +/obj/structure/hedge, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"eXK" = ( +/turf/open/floor/carpet/black, +/area/station/service/minibar) +"eXR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"eXS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/command) +"eYa" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"eYb" = ( +/turf/closed/wall/r_wall, +/area/station/medical/break_room) +"eYc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/fitness/recreation) +"eYk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"eYl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"eYs" = ( +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/fluff/divine/convertaltar, +/obj/item/fakeartefact, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"eYt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"eYA" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"eYE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/port) +"eYF" = ( +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"eYG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"eYH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/sign/clock/directional/west, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"eYI" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"eYM" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"eYS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"eYW" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"eYX" = ( +/obj/structure/table/wood, +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/effect/spawner/random/bureaucracy/pen{ + pixel_x = 6 + }, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"eYY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"eZi" = ( +/obj/structure/sign/poster/official/safety_eye_protection/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/left/directional/south{ + name = "Magboot Storage"; + req_access = list("eva") + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"eZk" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/pile/jungle/style_2, +/obj/structure/flora/bush/pale/style_4, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"eZl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/trash/boritos{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"eZo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/science) +"eZs" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"eZt" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron, +/area/station/cargo/storage) +"eZv" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"eZA" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/cult_turf, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"eZB" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"eZP" = ( +/obj/structure/broken_flooring/singular/always_floorplane/directional/east, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"eZQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"faa" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair/stool/directional/south{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"fae" = ( +/obj/structure/bed{ + dir = 1 + }, +/obj/item/bedsheet/red{ + dir = 1 + }, +/obj/structure/sign/clock/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","prison","isolation") + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"faf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/iron/stairs{ + color = "#5d341f" + }, +/area/station/security/courtroom) +"fag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"fai" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"faj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"fan" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"far" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/main) +"faw" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fax" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"faC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"faH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"faK" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmacy_shutters"; + name = "Pharmacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"faO" = ( +/obj/item/flashlight/lamp{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"faQ" = ( +/obj/structure/sign/poster/official/ue_no/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/mannequin/plastic, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"faX" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"fbb" = ( +/obj/structure/hedge, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"fbi" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"fbl" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"fbu" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/stack/spacecash/c10{ + pixel_y = 1 + }, +/obj/item/stack/spacecash/c1{ + pixel_y = 9 + }, +/obj/item/stack/spacecash/c20{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"fbx" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) +"fby" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"fbA" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/north{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"fbB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"fbE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/education) +"fbL" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"fbM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Cold Loop"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fbR" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/warden) +"fbS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fca" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"fcg" = ( +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"fci" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"fcw" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"fcG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/random/trash/soap, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"fcH" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fcQ" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/tree/jungle/small/style_4, +/obj/structure/marker_beacon/lime, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"fcR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"fcT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"fcV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"fcY" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/requests_console/directional/west{ + name = "Janitorial Requests Console"; + department = "Janitorial" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"fcZ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fde" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"fdf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/brig/lower) +"fdi" = ( +/obj/structure/railing, +/obj/structure/railing, +/obj/structure/stairs/west{ + color = "#3d3e42" + }, +/obj/structure/sign/departments/holy/directional/south, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"fdn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/cargo/storage) +"fdp" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"fdu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/crate/bin, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fdz" = ( +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"fdG" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"fdH" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"fdM" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/frame/computer, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"fdR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"fef" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"fem" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/commons/dorms) +"fen" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/arrow_ccw, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/secondary/service) +"fep" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"feq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fev" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"fey" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"feF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/vending/snack/green, +/turf/open/floor/wood/large, +/area/station/service/library) +"feH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"feJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/hallway/primary/fore) +"feR" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"feS" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness/recreation) +"feY" = ( +/obj/item/trash/can/food/pine_nuts, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"feZ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"ffj" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"ffp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"ffs" = ( +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ffu" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"ffx" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"ffz" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ffC" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/photocopier, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"ffE" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/sign/clock/directional/west, +/obj/item/toy/plush/moth, +/obj/machinery/camera/autoname/directional/west{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"ffG" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"ffS" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation/pool) +"ffT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"fgd" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"fgg" = ( +/obj/machinery/door/airlock/research{ + name = "Cytology Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"fgj" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"fgm" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/flag/tizira/directional/east, +/obj/item/toy/plush/lizard_plushie/green{ + name = "Bears-The-Flag" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fgn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"fgs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"fgt" = ( +/obj/structure/rack, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/digital_clock/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fgw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"fgx" = ( +/obj/docking_port/stationary/mining_home/nebula, +/turf/open/space/basic, +/area/space) +"fgz" = ( +/obj/structure/sink/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/plastic, +/area/station/security/prison/work) +"fgB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"fgC" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 8 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"fgG" = ( +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fgK" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/pile/jungle/style_5, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sunny/style_3, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"fgM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"fgR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"fgX" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"fhd" = ( +/obj/machinery/processor/slime, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"fhh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"fhm" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain) +"fhn" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"fho" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"fhr" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fht" = ( +/obj/structure/holosign/barrier/engineering, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"fhu" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"fhx" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fhz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"fhH" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fhL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"fhM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fhR" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"fhU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "queue_hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"fic" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fid" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_y = -26 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/execution/education) +"fig" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/pipe_cleaner_coil{ + pixel_y = -1 + }, +/obj/item/stack/pipe_cleaner_coil{ + pixel_y = -4 + }, +/obj/item/stack/cable_coil{ + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"fiq" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"fis" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"fit" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fiD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fiR" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"fiS" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"fiU" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fiV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"fiW" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fjk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/table/glass, +/obj/structure/sign/warning/yes_smoking/circle/directional/south, +/obj/item/cane, +/obj/item/clothing/head/hats/bowler{ + pixel_y = 2 + }, +/obj/item/cigarette, +/turf/open/floor/iron/dark/smooth_half, +/area/station/commons/fitness/recreation) +"fjn" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"fjo" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/service) +"fjp" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/gloves/color/fyellow{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"fjv" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"fjx" = ( +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Disposal Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"fjz" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/command) +"fjF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"fjG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"fjI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/aft/lesser) +"fjO" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"fjZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"fkb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"fkl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"fkI" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chem_storage) +"fkJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/fore) +"fkN" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fkS" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"fkT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"flc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"fle" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"flg" = ( +/obj/structure/flora/rock, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fll" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"fln" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/research) +"flp" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"flv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"flA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"flC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "main_surgery" + }, +/obj/machinery/smartfridge/organ, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/surgery/theatre) +"flF" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"flG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"flH" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"flO" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"fma" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fmb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"fmA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"fmF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"fmL" = ( +/obj/machinery/requests_console/directional/north{ + department = "Robotics"; + name = "Robotics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"fmO" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"fmP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/airlock_controller/incinerator_atmos{ + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"fmQ" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"fnb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"fni" = ( +/obj/structure/cable, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = 8; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"fnj" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"fnk" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"fnl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/item/chair, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"fnp" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fnu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/command) +"fnB" = ( +/obj/machinery/flasher/directional/south{ + id = "IsolationFlash" + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side, +/area/station/security/prison/safe) +"fnJ" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"fnL" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/obj/structure/sign/poster/contraband/andromeda_bitters/directional/west, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"fnM" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fnP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison) +"fnS" = ( +/obj/effect/decal/cleanable/ants, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"fnY" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"fob" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/upper) +"foo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + name = "Containment Pen #8"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"foA" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"foG" = ( +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"foK" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"foL" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"foW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/obj/item/flatpack{ + board = /obj/item/circuitboard/machine/flatpacker + }, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"foX" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 1; + req_access = null + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/qm) +"fpb" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"fpe" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"fpg" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"fpi" = ( +/obj/effect/spawner/random/structure/crate_loot, +/obj/effect/decal/cleanable/food/flour, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fpj" = ( +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/effect/decal/cleanable/plasma, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"fpk" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/obj/structure/cable, +/obj/machinery/door/airlock/mining{ + name = "Mining Break Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/mining_breakroom) +"fpm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fpt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"fpu" = ( +/obj/structure/rack, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/under/misc/vice_officer, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"fpy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"fpB" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/clown/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"fpG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"fpK" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"fpM" = ( +/obj/structure/table, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"fpS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter/monitored/distro_loop, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"fpT" = ( +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"fqi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/orange{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"fqj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fqo" = ( +/obj/machinery/door/window/brigdoor/left/directional/north{ + req_access = list("security"); + id = "cargocell"; + name = "Cargo Bay Cell" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/machinery/status_display/door_timer{ + pixel_x = 32; + id = "cargocell" + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"fqs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/hedge, +/obj/machinery/digital_clock/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/fore) +"fqy" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"fqz" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/service/library) +"fqA" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"fqC" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"fqD" = ( +/obj/effect/spawner/random/structure/crate_loot, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fqG" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fqM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"frb" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/navbeacon{ + location = "S8-Starboard-Hallway"; + codes_txt = "patrol;next_patrol=C2-Starboard-Central-B" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"fre" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"frg" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"frm" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/stalky, +/obj/structure/flora/bush/sunny, +/turf/open/floor/grass, +/area/station/service/greenroom) +"frt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/donk, +/area/station/cargo/breakroom) +"frD" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"frH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/interrogation) +"frJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"frK" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Unit 2" + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"frS" = ( +/obj/item/clothing/suit/caution, +/obj/structure/sign/warning/biohazard/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fsc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fsg" = ( +/obj/structure/flora/rock/pile/icy/style_2, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/maintenance/port) +"fsj" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig/lower) +"fsl" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"fsu" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"fsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/central) +"fsx" = ( +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"fsA" = ( +/obj/structure/sign/poster/contraband/d_day_promo/directional/west, +/obj/structure/hedge, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"fsF" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/pile/icy/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/robotics/augments) +"fsL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"fsP" = ( +/turf/closed/wall/r_wall, +/area/station/security/detectives_office) +"fsQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/turf/open/space/basic, +/area/space/nearstation) +"fsS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/south, +/obj/item/toy/basketball, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"fsT" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"fsY" = ( +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_x = 10; + pixel_y = -5; + plane = -7 + }, +/obj/structure/railing{ + dir = 4; + pixel_x = -13; + pixel_y = -16 + }, +/turf/open/floor/stone, +/area/station/hallway/secondary/service) +"fsZ" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"ftj" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/water/beach, +/area/station/ai_monitored/aisat/exterior) +"ftw" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"ftA" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"ftB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ftG" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"ftI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"ftJ" = ( +/obj/structure/cable, +/obj/item/cigbutt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"ftW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/item/clothing/glasses/meson, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/command/heads_quarters/ce) +"fub" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fug" = ( +/obj/structure/railing{ + dir = 8; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"fuh" = ( +/obj/structure/hedge, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/funeral) +"fuk" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher/directional/east{ + pixel_y = 24; + id = "Cell 2" + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"fut" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"fuw" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/spawner/random/trash/graffiti, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fuD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"fuK" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_corner{ + dir = 8 + }, +/area/station/commons/fitness) +"fuL" = ( +/obj/structure/curtain/cloth{ + color = "#f58ada" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"fuQ" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/assembly/infra, +/obj/item/assembly/signaler, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fuU" = ( +/turf/open/floor/carpet, +/area/station/medical/psychology) +"fuV" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/machinery/camera/autoname/motion/directional/west{ + network = list("minisat") + }, +/turf/open/misc/asteroid/airless, +/area/station/ai_monitored/aisat/exterior) +"fuW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fuZ" = ( +/obj/structure/railing/corner{ + dir = 4; + color = "#683d21"; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"fva" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"fvc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"fvd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"fvi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/service/chapel) +"fvl" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fvr" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"fvs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/right/directional/north{ + req_access = list("security"); + name = "Security Post - Medbay" + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "medsecprivacy"; + name = "Privacy Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"fvx" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/maintenance/disposal/incinerator) +"fvz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"fvD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"fvF" = ( +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/chair/stool/directional/east{ + pixel_x = -7 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/starboard/aft) +"fvH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"fvI" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"fvJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/structure/sign/warning/pods/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"fvL" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fvM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"fvO" = ( +/obj/structure/sign/departments/science/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"fvP" = ( +/turf/open/floor/glass, +/area/station/hallway/secondary/service) +"fvQ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/brig/lower) +"fvS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fwb" = ( +/obj/structure/rack, +/obj/item/storage/box{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"fwc" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fwe" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"fwi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bamboo{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"fwo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lab) +"fwv" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/openspace, +/area/space/nearstation) +"fwJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"fwU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"fwW" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/morgue) +"fxi" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fxm" = ( +/obj/machinery/light_switch/directional/east, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"fxx" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access = list("chapel_office") + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"fxy" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/dark, +/area/station/security/office) +"fxz" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/central) +"fxB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"fxF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/fore/lesser) +"fxH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"fxK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"fxQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/wood/glass{ + name = "The Writer's Hut" + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"fxU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"fxZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/structure/filingcabinet/medical, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"fya" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fyd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fyi" = ( +/obj/structure/closet/secure_closet/freezer/meat/all_access{ + anchored = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/mess) +"fyn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"fyr" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"fyt" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fyC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/fishing{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"fyD" = ( +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"fyJ" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"fyK" = ( +/obj/machinery/power/smes/full, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/electric_shock/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"fyL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command) +"fyM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"fyS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"fyT" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"fzc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/hand_labeler{ + pixel_y = 5 + }, +/obj/item/hand_labeler_refill, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"fzg" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fzq" = ( +/obj/structure/fluff/paper/stack, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fzv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"fzw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"fzz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"fzG" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"fzL" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"fzR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"fzT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"fzZ" = ( +/obj/effect/turf_decal/trimline/dark_blue/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"fAd" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/north, +/obj/structure/cable, +/turf/open/floor/grass{ + icon_state = "grass1" + }, +/area/station/security/prison/garden) +"fAl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fAo" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/large{ + pixel_y = -4; + plane = -3 + }, +/turf/open/floor/grass, +/area/station/service/theater_dressing) +"fAu" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos) +"fAx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"fAA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"fAB" = ( +/obj/structure/hedge, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/medical) +"fAD" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"fAG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"fAJ" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/security/prison) +"fAL" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychology Lobby" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"fAM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/security/armory) +"fAT" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fAW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/flag/mothic/directional/south, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"fAX" = ( +/obj/machinery/shuttle_manipulator, +/turf/open/floor/circuit, +/area/station/command/bridge) +"fBa" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"fBb" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 6 + }, +/obj/machinery/requests_console/directional/north{ + name = "Kitchen Requests Console"; + department = "Kitchen" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/service/kitchen) +"fBk" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/machinery/reagentgrinder{ + pixel_x = 0; + pixel_y = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"fBo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"fBx" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) +"fBL" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"fBN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"fBP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"fBX" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "janigarbage"; + name = "disposal conveyor"; + pixel_y = 7 + }, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"fBY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"fCf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"fCj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fCq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"fCr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"fCx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fCy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"fCB" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"fCH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"fCP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"fCR" = ( +/obj/structure/stairs/south, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"fCS" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"fDa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/table/reinforced/rglass, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"fDc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"fDg" = ( +/obj/effect/decal/cleanable/shreds, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"fDk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Escape Pod One"; + space_dir = 1 + }, +/turf/open/floor/plating, +/area/station/commons/dorms) +"fDn" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"fDp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"fDr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"fDu" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/blood_geometer/directional/west, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"fDx" = ( +/obj/structure/broken_flooring/side/directional/west{ + color = "#73737a" + }, +/obj/item/clothing/head/cone{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"fDJ" = ( +/turf/closed/wall, +/area/station/security/checkpoint/customs) +"fDK" = ( +/obj/structure/toilet{ + pixel_y = -1; + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/button/door/directional/east{ + normaldoorcontrol = 1; + id = "Toilet3"; + name = "Lock Control"; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"fDN" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fDO" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"fDP" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/reagent_dispensers/plumbed, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"fDU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"fDV" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/structure/curtain/bounty, +/obj/machinery/door/airlock/mining/glass{ + name = "Bitrunning Den" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"fDX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/dim/directional/south, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"fDY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/space/basic, +/area/space/nearstation) +"fDZ" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"fEc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/toy/figure/coroner{ + pixel_y = 11; + pixel_x = -1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"fEe" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/prison/directional/north, +/turf/open/floor/iron/dark/textured_corner, +/area/station/command/heads_quarters/hos) +"fEj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"fEl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fEm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fEn" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fEq" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"fEu" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"fEC" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"fEF" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/computer/security/telescreen/vault/directional/east, +/turf/open/floor/iron/dark/textured_half, +/area/station/command/heads_quarters/qm) +"fEG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"fEO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"fEP" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile/icy/style_2, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"fER" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"fEW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/holopad{ + pixel_y = -3 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"fEZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_4, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fFe" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"fFg" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fFh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/structure/railing{ + dir = 6 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"fFn" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fFr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/desk_bell, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Customs Desk"; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"fFt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"fFy" = ( +/obj/structure/transit_tube, +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"fFC" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"fFD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"fFJ" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/clothing/head/utility/chefhat, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"fFK" = ( +/obj/machinery/holopad, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"fFM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"fFO" = ( +/obj/structure/cable, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"fFS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"fFW" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"fFY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/sign/clock/directional/south, +/obj/structure/cable, +/obj/machinery/computer/security/telescreen/interrogation/directional/north, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"fGc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/smartfridge, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"fGd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"fGi" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"fGj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fGo" = ( +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/office) +"fGC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/cmo) +"fGD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"fGO" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"fGP" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fGT" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"fHe" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"fHg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"fHm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"fHo" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"fHp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"fHs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/turf_decal/trimline/purple, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"fHw" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"fHx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"fHJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"fHO" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"fHP" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/medical) +"fHQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"fHW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"fIe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"fIs" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"fIt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"fIz" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/donk_co/directional/east, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"fIK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/confetti, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"fIM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"fIN" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"fIU" = ( +/obj/structure/table/wood/fancy/green, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/food/pizza/margherita{ + pixel_y = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"fJh" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"fJj" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/directional/south, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"fJo" = ( +/obj/item/crowbar, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fJp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"fJv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"fJB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"fJO" = ( +/obj/effect/turf_decal/trimline/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"fJU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"fJV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"fKw" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/beige, +/obj/effect/spawner/random/exotic/antag_gear, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"fKA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"fKB" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 1 + }, +/obj/structure/sign/warning/chem_diamond/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/medical/chem_storage) +"fKG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"fKL" = ( +/obj/structure/chair/plastic, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"fKM" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = -11 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"fKQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fKR" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fKT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/small/directional/south{ + color = "#afc84b" + }, +/turf/open/floor/engine, +/area/station/science/genetics) +"fKZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + name = "Pool Shutters"; + id = "Pool" + }, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation/pool) +"fLe" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron, +/area/station/cargo/storage) +"fLm" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"fLs" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"fLD" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"fLT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"fLU" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"fMa" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"fMk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/science/lower) +"fMl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"fMp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/ordnance) +"fMs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"fMu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/maintenance/starboard/aft) +"fMw" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/warning/doors/directional/south, +/obj/item/clothing/head/cone{ + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fMx" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"fMC" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"fMI" = ( +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fMT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"fMY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"fNa" = ( +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"fNd" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"fNg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"fNh" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/security/prison/workout) +"fNp" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"fNq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fNv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"fNy" = ( +/obj/machinery/recharge_station, +/turf/open/floor/glass/reinforced, +/area/station/security/lockers) +"fNA" = ( +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/effect/mapping_helpers/mail_sorting/science/research, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Research Junction" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"fNC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"fNG" = ( +/obj/effect/turf_decal/siding/brown, +/obj/item/exodrone, +/obj/machinery/exodrone_launcher, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"fNL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"fNW" = ( +/obj/item/reagent_containers/cup/glass/bottle/ale{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_y = 8 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"fNZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"fOd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"fOi" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/structure/sign/poster/contraband/singletank_bomb/directional/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fOk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"fOm" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fOo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark, +/area/station/security/range) +"fOs" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/machinery/chem_dispenser/drinks/beer{ + pixel_y = 7 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"fOC" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/bag/plants, +/obj/item/reagent_containers/cup/watering_can, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"fOG" = ( +/obj/structure/flora/rock/pile/jungle/style_4, +/obj/structure/flora/rock/pile/style_3, +/obj/structure/flora/bush/stalky/style_2, +/obj/structure/flora/bush/large/style_2, +/obj/machinery/light/floor, +/obj/structure/marker_beacon/yellow, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"fOJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/requests_console/directional/south{ + department = "Research Lab"; + name = "Research Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/ore_update, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"fOL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"fOQ" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"fOW" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"fOX" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"fPa" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fPb" = ( +/obj/structure/sign/departments/medbay/alt/directional/south, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fPj" = ( +/obj/structure/table/wood/fancy, +/obj/item/food/grown/poppy/geranium/fraxinella, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/funeral) +"fPp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"fPs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"fPt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fPu" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"fPv" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fPy" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"fPE" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/toilet{ + pixel_y = 12; + pixel_x = -4 + }, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"fPJ" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "Controls the blast doors in front of the prison wing."; + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_y = -36; + req_access = list("brig"); + pixel_x = -6 + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the cell windows."; + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = -6; + pixel_y = -26; + req_access = list("security"); + specialfunctions = 4 + }, +/obj/machinery/button/door{ + desc = "Controls the shutters over the brig windows."; + id = "briglockdown"; + name = "Brig Lockdown Control"; + pixel_x = 6; + pixel_y = -26; + req_access = list("security") + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "armouryaccess"; + name = "Armoury Access"; + req_access = list("armory"); + pixel_x = 6; + pixel_y = -36 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"fPV" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"fPZ" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/construction/mining/aux_base) +"fQa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fQh" = ( +/obj/machinery/fax{ + fax_name = "Engineering Lobby"; + name = "Engineering Lobby Fax Machine" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"fQl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fQq" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fQv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/pumproom) +"fQx" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/fluff/paper/stack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"fQA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"fQD" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"fQE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"fQF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fQG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"fQH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"fQQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"fQY" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/breakroom) +"fRd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/landmark/start/assistant, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"fRp" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/workout) +"fRu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fRv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"fRD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"fRE" = ( +/obj/structure/rack, +/obj/item/crowbar/large, +/obj/item/flashlight, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"fRK" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/command) +"fRV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"fSi" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa{ + pixel_x = 2 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"fSj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fSm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fSn" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"fSq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"fSw" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"fSy" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Pen #1"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"fSF" = ( +/obj/effect/turf_decal/siding, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"fSG" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/aft) +"fSJ" = ( +/obj/item/grown/log/tree{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/structure/rack, +/obj/item/grown/log/tree{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/grown/log/tree{ + pixel_y = 5 + }, +/obj/item/grown/log/tree{ + pixel_y = 5 + }, +/obj/item/grown/log/tree, +/obj/item/grown/log/tree, +/obj/item/hatchet/wooden, +/obj/item/lighter, +/obj/effect/turf_decal/trimline/dark_blue/end{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"fSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fSL" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/science/robotics/mechbay) +"fSR" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"fSV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/confetti, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"fSW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"fTf" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fTi" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/computer/records/security/laptop, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"fTp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"fTt" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"fTz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/command) +"fTB" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerDown"; + name = "Medbay" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"fTC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"fTH" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"fTL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fTM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"fTP" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/fore) +"fTR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth{ + color = "#b3ff66" + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"fTW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"fUc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"fUe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"fUj" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/sign/departments/chemistry/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"fUn" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"fUt" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fUu" = ( +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"fUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"fUx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"fUy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"fUz" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/item/flashlight/lantern{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"fUB" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fUF" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"fUL" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"fUN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"fUS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"fUX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/fore) +"fUY" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "RD Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/rd_office, +/turf/open/floor/iron/white, +/area/station/science/lower) +"fUZ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/test_tube_rack{ + pixel_y = 4; + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_y = 7; + pixel_x = 3 + }, +/obj/item/reagent_containers/cup/tube{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"fVa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"fVb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/orange, +/area/station/engineering/break_room) +"fVf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/hedge, +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"fVj" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"fVk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"fVl" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"fVr" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"fVu" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"fVx" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"fVy" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fVG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fVI" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/station/service/theater) +"fVL" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"fVR" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"fVT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fWa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"fWh" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"fWi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"fWl" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/landmark/start/hangover, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"fWp" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"fWv" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"fWK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"fWO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"fWP" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"fWR" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"fWU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"fXc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"fXl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"fXn" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"fXt" = ( +/obj/machinery/button/door/directional/west{ + id = "circuitprivacy"; + name = "Circuit Lab Shutters Control"; + req_access = list("science") + }, +/obj/machinery/light/directional/west, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"fXv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"fXw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/break_room) +"fXz" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"fXC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"fXH" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/light/warm/directional/south, +/obj/machinery/smartfridge/drying/rack, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"fXK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"fXL" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"fXN" = ( +/obj/structure/cable, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"fXP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"fXQ" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"fXS" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/funeral) +"fYd" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/effect/turf_decal/box/white{ + color = "#dab4de" + }, +/turf/open/floor/iron/white/small, +/area/station/science/research) +"fYi" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/office) +"fYj" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"fYl" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/small, +/area/station/command) +"fYn" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/hydroponics) +"fYu" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/machinery/recharge_station, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"fYw" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"fYy" = ( +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/service/kitchen) +"fYF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"fYH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"fYN" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"fYO" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"fYS" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"fYT" = ( +/obj/structure/railing/corner{ + dir = 1; + color = "#4874A2" + }, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"fZk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"fZl" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/acidic_buffer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/basic_buffer{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/formaldehyde{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"fZm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"fZn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"fZq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/structure/railing, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"fZu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/lobby) +"fZB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/glass/reinforced, +/area/station/engineering/supermatter/room/upper) +"fZK" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/urinal/directional/north, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"fZT" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/sign/map/right{ + pixel_y = -32 + }, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Captain's Storage"; + req_access = list("captain") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"fZU" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig/lower) +"fZW" = ( +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/command/bridge) +"fZZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gab" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/hfr_room) +"gac" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/science/lower) +"gag" = ( +/turf/closed/wall, +/area/station/cargo/sorting) +"gai" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"gaA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gaB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"gaD" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"gaK" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/medical/patients_rooms) +"gaL" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gaM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gaU" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/aft) +"gaY" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gbe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/range) +"gbf" = ( +/obj/structure/cable, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"gbh" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"gbm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"gbo" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid8" + }, +/area/space/nearstation) +"gbp" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"gbr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"gbz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"gbE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"gbH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gbM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig/lower) +"gbV" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"gbW" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"gbY" = ( +/obj/structure/sign/warning/directional/north, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/item/clothing/head/cone{ + pixel_x = 0; + pixel_y = -4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gcb" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gcc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command) +"gch" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/medical/pharmacy) +"gcj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gcr" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"gcz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gcA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"gcC" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"gcH" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"gcI" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"gcQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/space/basic, +/area/space/nearstation) +"gcR" = ( +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"gdc" = ( +/obj/machinery/computer/atmos_control{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + name = "Atmospherics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"gdm" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/central) +"gds" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gdv" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/security/telescreen/vault/directional/north, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gdA" = ( +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gdF" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Pen #2"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gdL" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/grass, +/area/station/cargo/drone_bay) +"gdQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"gdR" = ( +/obj/item/kirbyplants/organic/plant10, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"gdS" = ( +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gdV" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"gdW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"gdX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"geg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/ai_monitored/turret_protected/ai) +"gej" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"gek" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/hallway/secondary/command) +"gem" = ( +/obj/structure/sign/warning/secure_area/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"gep" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"gex" = ( +/obj/item/banner/blue, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/turf/open/floor/circuit, +/area/station/commons/fitness/recreation/lasertag) +"geD" = ( +/obj/effect/spawner/random/structure/girder, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"geF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"geL" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/brown, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"geO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"geP" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 2"; + id_tag = "Cell2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"geR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/command) +"gfd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gfe" = ( +/obj/structure/hedge, +/obj/structure/railing, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"gfg" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/commons/vacant_room/office) +"gfl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/commons/toilet/restrooms) +"gfo" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gfr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/machinery/light/directional/south{ + color = "#ffcc99" + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"gfs" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/mapping_helpers/dead_body_placer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/morgue) +"gfy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"gfA" = ( +/obj/structure/rack, +/obj/machinery/digital_clock/directional/west, +/obj/item/clothing/gloves/color/red, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"gfC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + name = "Zen Garden"; + id = "AIgarden" + }, +/turf/open/floor/plating, +/area/station/ai_monitored/aisat/exterior) +"gfH" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/starboard) +"gfM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"gfO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"gfZ" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gga" = ( +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell"; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"ggb" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"ggd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/bed/dogbed/lia, +/mob/living/basic/carp/pet/lia, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"gge" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"ggh" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/item/cultivator/rake, +/obj/item/toy/seashell{ + icon_state = "shell2"; + pixel_x = 8; + pixel_y = -10 + }, +/turf/open/misc/beach/sand, +/area/station/ai_monitored/aisat/exterior) +"ggl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Education Chamber Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"ggt" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"ggD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"ggG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ggH" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/obj/structure/sign/poster/official/get_your_legs/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ggI" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"ggN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"ggO" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"ggR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"ggS" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"ggU" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"ggX" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/machinery/requests_console/directional/west{ + department = "Cargo Bay"; + name = "Cargo Bay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/modular_computer/preset/cargochat/cargo{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"ghb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/mass_driver/chapelgun{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/item/gps, +/obj/machinery/door/window/right/directional/east{ + name = "Mass Driver"; + req_access = list("chapel_office") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"ghg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/command) +"ghk" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"gho" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/storage) +"ghu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ghv" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ghM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ghO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"ghT" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/mob/living/basic/mothroach, +/obj/structure/flora/rock/pile/jungle/style_3, +/obj/structure/flora/bush/style_random, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"ghV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gih" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gii" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/maintenance/central) +"gil" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"gim" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"gis" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"git" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"giu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/science/genetics) +"giy" = ( +/obj/structure/sign/poster/official/nanotrasen_logo/directional/north, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"giF" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"giG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) +"giI" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"giJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"giL" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"giQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"giW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"giZ" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/chair/sofa/corp, +/obj/item/cigarette/pipe, +/turf/open/floor/carpet, +/area/station/service/greenroom) +"gjb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/range) +"gjg" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"gjh" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/item/toy/plush/nukeplushie, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"gjk" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"gjm" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/bluespace_vendor/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"gjq" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/button/flasher{ + id = "holdingflash"; + name = "Holding Cell Flasher"; + req_access = list("security"); + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"gjr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/hfr_room) +"gjA" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"gjO" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"gjQ" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gjS" = ( +/obj/machinery/computer/piratepad_control/civilian, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"gjU" = ( +/obj/structure/flora/ash/cacti{ + icon_state = "cactus4" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/misc/asteroid/basalt{ + icon_state = "basalt8" + }, +/area/station/service/chapel) +"gjX" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/commons/toilet/shower) +"gjZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"gkb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/science/genetics) +"gkc" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gkf" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/warden) +"gkg" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gkj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"gkk" = ( +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"gkl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"gkm" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"gkr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/space/basic, +/area/space/nearstation) +"gkA" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gkD" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gkH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"gkM" = ( +/obj/item/kitchen/spoon/plastic, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/obj/structure/table/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 + }, +/area/station/security/prison) +"gkQ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/cargo/miningoffice) +"gkY" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/table, +/obj/item/reagent_containers/condiment/milk{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/coconut_milk{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/condiment/soymilk{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_containers/condiment/yoghurt{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"gla" = ( +/obj/structure/railing{ + dir = 4; + pixel_y = -8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 8; + pixel_y = -8; + color = "#683d21" + }, +/turf/open/floor/iron/stairs/left{ + color = "#5d341f" + }, +/area/station/service/kitchen/diner) +"glb" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/commons/dorms) +"glj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"gll" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/flag/nanotrasen/directional/west, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"glm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/departments/medbay/alt/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"glz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"glC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/mess) +"glF" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"glG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"glI" = ( +/obj/structure/rack, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"glL" = ( +/obj/structure/chair/comfy, +/turf/open/floor/carpet, +/area/station/service/theater) +"glN" = ( +/obj/structure/sign/departments/court/directional/north, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"glP" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"glR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/directions/vault/directional/north{ + pixel_y = 37 + }, +/obj/structure/sign/directions/upload/directional/north{ + pixel_y = 29 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"glX" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/tree/jungle/small/style_5, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/kitchen/diner) +"gmc" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/server) +"gme" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"gmg" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + initialize_directions = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"gmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"gmj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/cold_temp/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"gmk" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"gml" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/pai_card{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"gmn" = ( +/obj/structure/railing/corner{ + color = "#683d21"; + pixel_y = -4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"gmq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"gmu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"gmA" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"gmD" = ( +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 1; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/structure/sign/warning/vacuum/external/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/solars/port/aft) +"gmL" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"gmT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/white, +/area/station/science/lower) +"gmV" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"gmW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"gmY" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"gnb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"gnc" = ( +/obj/item/food/grown/tomato{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"gni" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"gnr" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot_white, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"gnx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/science/genetics) +"gnB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/walk/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"gnK" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"gnM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/purple, +/area/station/commons/dorms) +"gnP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"gnQ" = ( +/obj/structure/broken_flooring/side/directional/west{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gnT" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/trimline/blue/end, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/left/directional/south, +/obj/effect/landmark/start/hangover, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/toilet/restrooms) +"gnZ" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload) +"goa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/project) +"goc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/medical/medbay/central) +"goi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/station/medical/office) +"gom" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/camera/autoname/directional/east, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"goo" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gor" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"gox" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"goM" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"goO" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"goU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"gpa" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"gpe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/engineering) +"gpj" = ( +/obj/structure/bed/medical, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"gpn" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gpo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"gpu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"gpv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = list(/datum/gas/nitrogen) + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gpA" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/science/ordnance) +"gpF" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" + }, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_b) +"gpH" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"gpL" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/spawner/random/aimodule/neutral, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/flasher/directional/west{ + id = "AI" + }, +/obj/machinery/light/directional/west, +/obj/machinery/door/window/left/directional/east{ + name = "Core Modules"; + req_access = list("captain") + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"gqf" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/sink/kitchen/directional/south, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/item/reagent_containers/medigel{ + pixel_x = 13; + pixel_y = 19 + }, +/obj/structure/mirror/broken/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/bridge) +"gqq" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"gqr" = ( +/obj/structure/sign/warning/yes_smoking/circle/directional/north, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"gqs" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"gqt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"gqu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/project) +"gqv" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"gqw" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/security/mechbay) +"gqE" = ( +/obj/machinery/modular_computer/preset/cargochat/service, +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"gqH" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8; + pixel_x = -6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"gqO" = ( +/turf/closed/wall, +/area/station/service/chapel) +"gqP" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gqV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"grg" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"grk" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/medical/patients_rooms) +"gro" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"grt" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"grC" = ( +/obj/machinery/door/airlock/public{ + name = "Restroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"grJ" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/spawner/random/aimodule/harmless, +/obj/structure/sign/plaques/kiddie{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"grL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/maintenance/central) +"grN" = ( +/obj/effect/turf_decal/trimline/red/warning, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"grQ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/iron/dark/corner, +/area/station/cargo/lower) +"grY" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command) +"grZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gsi" = ( +/turf/closed/wall, +/area/station/medical/morgue) +"gsx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"gsE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"gsJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) +"gsL" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"gsN" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/hallway/secondary/command) +"gsY" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"gtg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"gtk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/side, +/area/station/security/prison) +"gtn" = ( +/turf/closed/mineral/random, +/area/space/nearstation) +"gtp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"gtA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional{ + pixel_y = -1 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"gtI" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/beakers{ + pixel_y = 8 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"gtL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gtR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gtW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"gtZ" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"gua" = ( +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) +"guc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/camera/autoname/directional/south{ + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"guo" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"guw" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"guD" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"guF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"guG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"guL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"guM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"guQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"guV" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"gvb" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"gvt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"gvz" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gvF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"gvK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gvO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "rdordnance"; + name = "Ordnance Containment Control"; + req_access = list("ordnance"); + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light_switch/directional/west{ + pixel_x = -26; + pixel_y = -6 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"gvS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"gvU" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gvX" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood/parquet, +/area/station/maintenance/starboard/central) +"gvY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"gwa" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"gwb" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"gwl" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"gwu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to North Ports" + }, +/obj/effect/turf_decal/trimline/purple, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gwv" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/nuke_storage) +"gwz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"gwF" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes{ + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/item/gun/syringe, +/obj/item/gun/syringe{ + pixel_y = 3 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"gwJ" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"gwN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"gwQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"gwS" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/digital_clock/directional/west, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/port) +"gxa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gxe" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gxf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/structure/flora/grass/both/style_random, +/obj/structure/flora/bush/snow/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"gxm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"gxn" = ( +/obj/machinery/component_printer, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"gxp" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"gxt" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"gxx" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"gxB" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"gxC" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/beebox, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"gxD" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"gxI" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/stamp/law, +/obj/item/clothing/glasses/sunglasses/big, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"gxJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/sign/poster/official/safety_internals/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"gxP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gxR" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"gxZ" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/poster/contraband/kudzu/directional/south, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"gye" = ( +/obj/machinery/door/window/brigdoor/left/directional/east{ + req_access = list("security"); + name = "Customs Supply" + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"gyf" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/bed/medical, +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/bedsheet/medical{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"gyg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gym" = ( +/turf/open/space/basic, +/area/space) +"gyo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"gyz" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gyE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"gyH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gyM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/item/toy/beach_ball{ + pixel_y = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"gyN" = ( +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/range) +"gyR" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"gyU" = ( +/obj/effect/turf_decal/trimline/yellow/mid_joiner, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"gzp" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"gzt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/navbeacon{ + location = "F16-Science"; + codes_txt = "patrol;next_patrol=F17-Fore-Hallway" + }, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gzy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shower/directional/east, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"gzz" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/bulletproof_armor, +/obj/effect/spawner/random/armory/bulletproof_helmet, +/obj/effect/turf_decal/bot/right, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"gzE" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/cargo) +"gzO" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gzR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/left/directional/north, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"gzX" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/security/prison/workout) +"gAd" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/command) +"gAm" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gAs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/commons/dorms) +"gAC" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/requests_console/directional/west{ + department = "AI Chamber"; + name = "AI Chamber Requests Console" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"gAD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gAE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"gAJ" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Head of Security's Office"; + name = "Head of Security's Fax Machine" + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"gAO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"gAU" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gAY" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/state_laws/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"gBe" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Service Hallway"; + name = "Service Fax Machine" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"gBg" = ( +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gBh" = ( +/obj/machinery/door/window/right/directional/south{ + name = "Primary Tool Storage Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"gBk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gBq" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/clothing/gloves/latex{ + pixel_x = 1; + pixel_y = 16 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"gBt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"gBx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"gBy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"gBD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"gBE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"gBI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/service/chapel/funeral) +"gBM" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/rd) +"gBN" = ( +/turf/open/openspace, +/area/station/medical/storage) +"gBO" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/obj/item/chair/wood{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"gBP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gBQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gBR" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"gBS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"gBU" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"gBV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/commons/dorms) +"gBZ" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/machinery/light/small/dim/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gCc" = ( +/obj/structure/chair/wood/wings, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"gCd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/robotics/augments) +"gCf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"gCg" = ( +/obj/item/clothing/shoes/workboots/mining, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"gCl" = ( +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/space_cola/directional/west, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"gCv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gCx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"gCB" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay"); + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"gCI" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"gCJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/decal/cleanable/wrapping/pinata, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/light/small/dim/directional/west, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"gCL" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/turf/open/floor/grass, +/area/station/security/medical) +"gCM" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 16; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 16; + pixel_x = -4 + }, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 9 + }, +/obj/effect/turf_decal/trimline/dark_green/line, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"gCT" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"gDa" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"gDp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/vending/autodrobe, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gDE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"gDJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"gDO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gDP" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/office) +"gDR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"gDT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port) +"gDY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/fore/lesser) +"gEb" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gEe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"gEf" = ( +/obj/structure/table/reinforced, +/obj/item/t_scanner, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"gEt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) +"gEv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 1; + color = "#683d21"; + pixel_y = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"gEx" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"gEI" = ( +/obj/structure/hedge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"gEJ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/ore_silo, +/obj/machinery/newscaster/directional/north, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/qm) +"gEO" = ( +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "SecElevator"; + preset_destination_names = list("2" = "Security Bottom", "3" = "Security Upper"); + req_access = list("security") + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"gEQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"gEV" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/command) +"gEX" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"gFa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"gFc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/science/genetics) +"gFe" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"gFi" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) +"gFl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/directional/north, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/execution/education) +"gFp" = ( +/obj/structure/flora/ash/fireblossom{ + icon_state = "fireblossom2" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/misc/asteroid/basalt{ + icon_state = "basalt1" + }, +/area/station/service/chapel) +"gFr" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/lesser) +"gFs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"gFv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"gFN" = ( +/obj/item/reagent_containers/pill/iron, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/cargo) +"gFP" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/jungle/a/style_random, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/security/checkpoint/customs) +"gFS" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"gFV" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"gFY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"gGl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"gGp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/hallway/primary/fore) +"gGB" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "laserblue"; + name = "Blue Team" + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"gGD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/boritos, +/obj/effect/decal/cleanable/glass, +/obj/structure/marker_beacon/jade, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"gGE" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"gGG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gGJ" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"gGM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"gGN" = ( +/obj/machinery/door/airlock/medical, +/obj/structure/curtain, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/medical/abandoned) +"gGP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gHa" = ( +/obj/effect/spawner/random/trash/box, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"gHb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"gHi" = ( +/obj/item/wrench{ + pixel_x = -2; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gHm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/wood/large, +/area/station/service/library) +"gHw" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"gHD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gHM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"gHN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/science/genetics) +"gIb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"gIe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + name = "Command Reception Desk"; + req_access = list("command") + }, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gIg" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"gIn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"gIo" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/ammo_casing/rocket{ + pixel_x = 4; + pixel_y = 15; + name = "Dud Rocket"; + desc = "An 84mm High Explosive rocket. This one's a dud. Pretty sure." + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"gIt" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"gIv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/light/floor, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy2" + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/cmo) +"gIz" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access = list("teleporter") + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"gIA" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"gIQ" = ( +/turf/closed/wall/r_wall, +/area/station/science/explab) +"gIR" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Medical Freezer Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gIS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"gIU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"gIX" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gJa" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"gJn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/central) +"gJs" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"gJu" = ( +/obj/machinery/door/airlock/maintenance/glass{ + name = "Containers Storage Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"gJB" = ( +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"gJD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"gJT" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gJX" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"gJY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/item/kirbyplants/organic/plant4, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"gKc" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"gKd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"gKk" = ( +/obj/effect/turf_decal/trimline/dark_blue/end{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"gKl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"gKt" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - Air" + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"gKy" = ( +/turf/closed/wall/r_wall, +/area/station/security/checkpoint/engineering) +"gKz" = ( +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/storage/fancy/cigarettes, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/spray/pepper, +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"gKC" = ( +/obj/item/pillow, +/obj/machinery/light/small/directional/south, +/turf/open/floor/bamboo, +/area/station/ai_monitored/aisat/exterior) +"gKD" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"gKG" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"gKM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"gKN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"gKO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"gKQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"gKS" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"gKT" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"gKW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"gKZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 0; + pixel_x = -10 + }, +/obj/machinery/door/window/right/directional/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/item/storage/box/coffeepack{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"gLd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"gLi" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/restraints/handcuffs{ + pixel_x = 0; + pixel_y = -4 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"gLk" = ( +/obj/structure/flora/bush/large, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/commons/dorms) +"gLp" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gLv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/holding_cell) +"gLw" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P11-Service-Hallway"; + codes_txt = "patrol;next_patrol=P12-Port-Hallway" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"gLy" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"gLz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/left/directional/north{ + name = "Smoking Room" + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/commons/fitness/recreation) +"gLB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"gLD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/dim/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"gLI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"gLK" = ( +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/library) +"gLW" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/item/reagent_containers/cup/glass/bottle/hcider{ + pixel_y = 17; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/glass/bottle/grappa{ + pixel_y = 20 + }, +/obj/item/reagent_containers/cup/glass/bottle/grenadine{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_y = 13; + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/tequila{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/railing, +/obj/structure/table/reinforced/plasmarglass, +/obj/structure/marker_beacon/burgundy, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"gMe" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"gMf" = ( +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 24; + pixel_y = -24; + req_access = list("virology") + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"gMk" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/multitool, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"gMr" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"gMt" = ( +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/bottle/sake{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/port) +"gMy" = ( +/obj/machinery/computer/records/medical{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = 8 + }, +/obj/machinery/button/curtain{ + pixel_x = -6; + name = "Privacy Curtains"; + id = "detpriv"; + req_access = list("detective"); + pixel_y = -26 + }, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"gME" = ( +/obj/structure/rack, +/obj/item/storage/box, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"gMG" = ( +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"gMH" = ( +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"gMK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/warehouse) +"gMR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/lockers) +"gNj" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gNm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"gNp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/latex, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/education) +"gNx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"gNB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"gNE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/ai_monitored/turret_protected/ai_upload) +"gNF" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"gNK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + color = "#36373a"; + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"gNU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"gNX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"gOa" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"gOc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"gOi" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/misc/grass, +/area/station/engineering/atmos) +"gOk" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"gOq" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"gOr" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gOB" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"gOF" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/janitor) +"gOV" = ( +/turf/closed/wall, +/area/station/service/cafeteria) +"gOW" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"gPc" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"gPe" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/wallet{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/gps{ + gpstag = "QM0"; + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/coin/gold{ + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"gPj" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"gPk" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/hedge, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"gPo" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"gPr" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/medical/break_room) +"gPt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"gPu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/port/aft) +"gPz" = ( +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "laserblue"; + name = "Blue Team" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"gPD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/status_display/door_timer{ + pixel_y = -32; + id = "medcell" + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"gPE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison) +"gPR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"gPZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/structure/sign/flag/terragov/directional/south, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"gQa" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"gQk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gQn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gQs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "Xenobio Pen 2 Blast Door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/south{ + name = "Containment Pen #2"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"gQt" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"gQu" = ( +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"gQv" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/engineering/main) +"gQC" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"gQJ" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"gQM" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"gQR" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"gQS" = ( +/obj/machinery/door/window/left/directional/north, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gQX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/bridge) +"gRc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"gRd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gRg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"gRj" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/flag/nanotrasen/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"gRm" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/port/aft) +"gRq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"gRx" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"gRD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"gRF" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"gRH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"gRM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"gRR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/command) +"gRW" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"gRX" = ( +/obj/structure/railing, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port) +"gSc" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gSd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"gSe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gSn" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/departments/science/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"gSp" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/floor{ + color = "#ff8080" + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","bar") + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"gSs" = ( +/obj/item/reagent_containers/pill/maintenance, +/obj/item/reagent_containers/syringe/multiver{ + pixel_x = -18; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/confetti, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"gSv" = ( +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/arrows{ + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/sign/departments/cargo/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"gSA" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"gSC" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"gSO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/supermatter/room/upper) +"gST" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/fancy/heart_box, +/obj/effect/spawner/random/decoration/flower, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"gTb" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/cargo/storage) +"gTc" = ( +/obj/structure/hedge, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"gTy" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/service/library/upper) +"gTz" = ( +/obj/structure/fence/door, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gTG" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"gTK" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"gTL" = ( +/turf/closed/wall, +/area/station/service/chapel/funeral) +"gTO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"gTR" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/mechbay) +"gTS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/iannewyear, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"gTW" = ( +/turf/closed/wall, +/area/station/medical/surgery/theatre) +"gTY" = ( +/obj/structure/chair/sofa/left/brown, +/obj/structure/sign/poster/official/no_erp/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"gTZ" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = -4 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"gUe" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/end{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"gUh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/airlock_painter{ + pixel_y = 5 + }, +/obj/item/airlock_painter/decal, +/obj/item/airlock_painter/decal/tile{ + pixel_y = -6 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"gUi" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"gUt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"gUE" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"gUI" = ( +/obj/structure/railing, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/central) +"gUK" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/computer/exoscanner_control, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"gUP" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port) +"gUW" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/duct, +/obj/machinery/defibrillator_mount/mobile{ + anchored = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"gVb" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"gVd" = ( +/obj/machinery/airalarm/directional/north, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing/corner{ + dir = 2; + color = "#683d21" + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood/tile, +/area/station/security/courtroom) +"gVg" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"gVj" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_half, +/area/station/cargo/drone_bay) +"gVk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"gVl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/arrows{ + dir = 1; + pixel_y = -8; + pixel_x = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"gVo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"gVu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"gVw" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/starboard/fore) +"gVz" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"gVA" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room/upper) +"gVE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"gVF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"gVR" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"gWa" = ( +/obj/item/radio/intercom/directional/north, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"gWf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"gWg" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/medkit/emergency{ + pixel_y = -1; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"gWm" = ( +/obj/machinery/computer/rdconsole, +/obj/machinery/button/door/directional/north{ + id = "rdrnd"; + name = "Research and Development Containment Control"; + pixel_x = -6; + req_access = list("rd") + }, +/obj/machinery/button/door/directional/north{ + id = "rdordnance"; + name = "Ordnance Containment Control"; + pixel_x = 6; + req_access = list("rd") + }, +/obj/machinery/button/door/directional/north{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Control"; + req_access = list("rd"); + pixel_y = 34 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"gWp" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/box/white{ + color = "#dab4de" + }, +/turf/open/floor/iron/white/small, +/area/station/science/research) +"gWz" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"gWO" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"gWR" = ( +/obj/machinery/computer/records/security, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"gWU" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/cargo/lower) +"gWV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"gXd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"gXo" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"gXs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"gXv" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"gXy" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"gXA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"gXM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/storage) +"gXP" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison/safe) +"gXU" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"gXX" = ( +/obj/machinery/module_duplicator, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"gXY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant2, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"gYa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"gYc" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/brown/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"gYh" = ( +/obj/structure/cable, +/obj/item/stack/arcadeticket{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"gYk" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/machinery/newscaster/directional/south, +/obj/item/stack/sheet/plasteel, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"gYo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/brig) +"gYq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"gYt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"gYy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"gYD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"gYI" = ( +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/service/theater) +"gYK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port/aft) +"gYM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"gYZ" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/pumproom) +"gZg" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"gZi" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"gZl" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"gZn" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/port) +"gZq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"gZz" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/engineering/main) +"gZA" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"gZB" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"gZE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"gZK" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/cargo) +"gZM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/cargo) +"gZP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/stack/spacecash/c10{ + pixel_y = 9 + }, +/obj/item/poster/traitor{ + pixel_y = -2 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"gZT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"gZV" = ( +/obj/structure/lattice/catwalk, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/glass/colocup{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/colocup{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gZW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/grass{ + icon_state = "grass3" + }, +/area/station/security/prison/garden) +"gZY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"haa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"hab" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Science Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"hac" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/bedsheetbin, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"had" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"hah" = ( +/obj/structure/cable, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ham" = ( +/obj/machinery/door/poddoor{ + id = "cargload"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"han" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/cable, +/obj/structure/sign/warning/test_chamber/directional/east, +/turf/open/floor/iron/white, +/area/station/science/lower) +"has" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"haE" = ( +/obj/machinery/door/window/right/directional/west{ + name = "Research Delivery"; + req_access = list("science") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"haF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/sign/poster/official/science/directional/south, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"haG" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"haW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/bluespace_beacon, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"haZ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/button/door{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"hbb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"hbk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"hbE" = ( +/obj/effect/turf_decal/caution/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hbF" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/hedge, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hbJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hbM" = ( +/obj/structure/fireplace, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/turf/open/floor/stone, +/area/station/security/prison/rec) +"hbN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/secondary/service) +"hbQ" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage/gas) +"hbV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/prison/directional/west, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/structure/sign/poster/official/nanotrasen_logo/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"hbX" = ( +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"hcd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/storage/bag/xeno, +/obj/structure/closet{ + anchored = 1; + can_be_unanchored = 1; + name = "Cold protection gear" + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"hci" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hcn" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"hcq" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"hcv" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/port) +"hcy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"hcA" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 locker" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"hcF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock/directional/east, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hcI" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"hcL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"hcQ" = ( +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hcU" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"hcW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"hcZ" = ( +/obj/structure/marker_beacon/violet, +/obj/effect/landmark/event_spawn, +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/structure/flora/rock/style_4, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"hdm" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"hdx" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/command) +"hdz" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"hdB" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"hdD" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"hdF" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"hdM" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"hdN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"hdX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/station/commons/fitness/recreation) +"hdY" = ( +/obj/structure/railing{ + dir = 6; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"hec" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + location = "A1-Aft-Hallway"; + codes_txt = "patrol;next_patrol=A2-Engineering" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"hee" = ( +/turf/open/floor/iron/goonplaque, +/area/station/service/theater) +"heg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/service/hop_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + name = "HoP Junction" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hei" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"hej" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Cargo Desk"; + req_access = list("shipping") + }, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"hes" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"hez" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"heA" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"heJ" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"heK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/dim/directional/north, +/obj/structure/table/glass, +/obj/item/wrench, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"heP" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/breakroom) +"heU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"heW" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hfa" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/north, +/obj/item/reagent_containers/cup/bottle/potassium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/phosphorus{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/sodium{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"hfb" = ( +/obj/structure/chair/office/light, +/turf/open/floor/carpet, +/area/station/service/cafeteria) +"hfe" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/item/modular_computer/laptop{ + pixel_y = 3 + }, +/obj/item/disk/holodisk, +/obj/item/instrument/piano_synth/headphones, +/turf/open/floor/circuit/green, +/area/station/maintenance/starboard/fore) +"hfk" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/jungle/b/style_random, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"hfp" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/radio/intercom/directional/west, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"hfr" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"hfs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/fitness/recreation) +"hfG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"hfI" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"hfN" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"hfO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"hfR" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hfS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/item/stack/spacecash/c10, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hfU" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/port) +"hfX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"hfY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/stairs/left, +/area/station/hallway/primary/fore) +"hfZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"hgc" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Atmospherics" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage/gas) +"hgh" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"hgi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"hgl" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"hgm" = ( +/obj/structure/broken_flooring/pile/directional/west, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hgn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/lockers) +"hgw" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/science/ordnance) +"hgI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"hgL" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"hgR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"hgS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"hgW" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"hhe" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"hhf" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/transport/linear/public, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "Bridge2Elevator"; + preset_destination_names = list("2" = "Bridge Bottom", "3" = "Bridge Upper"); + req_access = list("command") + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"hhl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/hedge, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/fitness/recreation) +"hhq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"hhs" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = -6 + }, +/obj/item/flashlight/lamp{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/item/pen{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/button/door/directional/east{ + name = "Medbay Upper Doors Control"; + id = "MedbayFoyerUp"; + normaldoorcontrol = 1; + pixel_y = 6; + req_access = list("medical") + }, +/obj/structure/cable, +/obj/machinery/button/door/directional/east{ + name = "Medbay Lower Doors Control"; + id = "MedbayFoyerDown"; + normaldoorcontrol = 1; + pixel_y = -6; + req_access = list("medical") + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"hhC" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"hhD" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"hhK" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"hhP" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"hhR" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"hhS" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"hhW" = ( +/turf/closed/wall, +/area/station/service/library) +"hia" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"hic" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hie" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"hij" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/prison/work) +"hip" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitory Maintenance" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hiq" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/landmark/navigate_destination/med, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"hiw" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hiB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/clothing/head/collectable/hop{ + name = "novelty HoP hat"; + pixel_y = -3; + pixel_x = -1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"hiC" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hiE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"hiF" = ( +/obj/structure/broken_flooring/singular/always_floorplane/directional/east, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hiM" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/curtain, +/obj/effect/turf_decal/trimline/brown/end, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/right/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/cargo/breakroom) +"hiR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"hiS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"hiU" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"hiV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/guncase/shotgun, +/obj/item/gun/ballistic/shotgun/toy, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"hiY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hjc" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"hje" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"hjf" = ( +/obj/effect/decal/cleanable/rubble, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hjg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"hji" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"hjo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"hjE" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"hjG" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ + name = "Burn Chamber Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"hjH" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"hjO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hjP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"hjS" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"hkb" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"hkc" = ( +/turf/closed/wall, +/area/station/hallway/primary/fore) +"hkm" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hkp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"hks" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"hkv" = ( +/obj/machinery/incident_display/delam/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"hkD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"hkE" = ( +/obj/effect/turf_decal/trimline/green, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"hkH" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"hkI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/mob/living/basic/pet/cat/space{ + dir = 4; + name = "Nebula Correspondent" + }, +/obj/effect/mapping_helpers/mob_buckler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"hkK" = ( +/obj/machinery/duct, +/obj/machinery/door/airlock/hatch{ + name = "Secure Pen" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"hkO" = ( +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/item/storage/photo_album/captain, +/obj/item/camera, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"hkR" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/dim/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"hkW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/armory/barrier_grenades, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"hkX" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/sign/clock/directional/north, +/obj/structure/bookcase/random/reference, +/obj/item/toy/figure/miner{ + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"hlu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hlD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"hlJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_cw, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"hlM" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/starboard/fore) +"hlR" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/organic/plant21, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"hmc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"hmd" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hmj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hml" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"hmt" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/starboard) +"hmu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"hmB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"hmG" = ( +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/kitchen/diner) +"hmK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "CE's Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"hmT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"hmV" = ( +/obj/structure/flora/bush/jungle, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/security/brig) +"hmW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/bluespace_vendor/directional/south, +/obj/item/storage/medkit/fire, +/obj/item/storage/belt/utility, +/obj/item/lightreplacer{ + pixel_y = 7 + }, +/obj/item/flatpack{ + board = /obj/item/circuitboard/machine/flatpacker + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"hmZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hnc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"hne" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hnk" = ( +/obj/machinery/computer/atmos_control/ordnancemix, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"hnq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/clock/directional/east, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"hnx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"hnJ" = ( +/obj/structure/fireplace{ + fuel_added = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/item/toy/figure/engineer{ + pixel_y = 37; + pixel_x = 9 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/side, +/area/station/engineering/break_room) +"hnV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/always_floorplane/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hnX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emitter Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hnZ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_y = -3; + pixel_x = 9 + }, +/obj/item/reagent_containers/cup/soda_cans/beer{ + pixel_y = -4; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 17 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"hol" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/pods/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"hop" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/aft) +"how" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("minisat") + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"hox" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"hoy" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"hoA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"hoB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hoE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"hoO" = ( +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42" + }, +/area/station/service/theater) +"hoV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"hoX" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"hoZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"hpp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hps" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"hpy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"hpA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"hpC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hpG" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hpR" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"hpS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw/style_2, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/maintenance/central) +"hpV" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/medical) +"hpY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/chem_pile, +/obj/item/cigbutt{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/iron/smooth_half{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"hqa" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/fitness) +"hqd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"hqh" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/trimline/dark_red/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness) +"hqp" = ( +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/stalky/style_random, +/obj/machinery/light/floor, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"hqq" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"hqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hqy" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/warning, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"hqA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 8; + pixel_x = -18 + }, +/obj/item/radio/intercom, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"hqF" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"hqG" = ( +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"hqI" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hqL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"hqO" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"hqT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"hqX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/bush/lavendergrass, +/obj/item/stack/sheet/animalhide/xeno, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hqY" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/wood/large, +/area/station/service/library) +"hqZ" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/maintenance{ + name = "Security E.V.A Storage Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"hrb" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"hrd" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) +"hrf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/security/lockers) +"hrj" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hrm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/drinkingglass, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"hro" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/breakroom) +"hrq" = ( +/obj/structure/tank_holder/extinguisher, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hrw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hrA" = ( +/obj/structure/rack, +/obj/item/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/firingpins, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"hrB" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"hrD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"hrG" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hrH" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/flashlight/lantern/on, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hrR" = ( +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"hrW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/desk_bell, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/garden) +"hrX" = ( +/obj/vehicle/sealed/car/vim, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/confetti, +/obj/structure/marker_beacon/yellow, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hrZ" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"hsf" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hsh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hsn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/commons/dorms) +"hsp" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"hss" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"hsv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"hsB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"hsE" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/lighter{ + pixel_x = -15; + pixel_y = 1 + }, +/obj/item/cigarette/cigar/premium{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/cigarette/cigar/havana{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/cigarette/cigar/cohiba{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"hsF" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"hsI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"hsK" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/tree/jungle/style_6, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"hsL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"hsM" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/security/prison) +"hsS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/incident_display/delam/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"hsT" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/department/bridge) +"hsV" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/door/window/left/directional/north{ + req_access = list("robotics"); + name = "Robotics Surgery" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"hsZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"htf" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"htk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"htl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"htp" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"htu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"htw" = ( +/turf/closed/wall, +/area/station/maintenance/disposal) +"hty" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"htH" = ( +/obj/structure/table, +/obj/effect/spawner/random/medical/minor_healing, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/obj/item/screwdriver, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"htJ" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"htR" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"htW" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"htZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"huc" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"hud" = ( +/obj/structure/sign/warning/docking/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"hue" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/engineering/atmos) +"hug" = ( +/obj/structure/chair/sofa/bench/solo, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"huo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Monkey Pen"; + req_access = list("genetics") + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/genetics) +"huv" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass, +/area/station/service/library/upper) +"hux" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"huB" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"huL" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/station/cargo/mining_breakroom) +"huM" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"huQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"huR" = ( +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/command) +"hve" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"hvi" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"hvl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hvn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"hvz" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"hvE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/photocopier, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"hvR" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"hwa" = ( +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/smoke_machine, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hwe" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"hwh" = ( +/obj/structure/curtain/cloth{ + color = "#36373a"; + open = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"hwj" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/computer/accounting{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hwk" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"hwm" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/storage/primary) +"hwp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/mid_joiner, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/warehouse) +"hws" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"hwz" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"hwA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/obj/machinery/duct, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"hwB" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"hwC" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"hwD" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hwE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"hwQ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"hwS" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"hwY" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"hwZ" = ( +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"hxc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"hxh" = ( +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"hxj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/requests_console/directional/north{ + department = "Telecomms Admin"; + name = "Telecomms Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"hxm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/sign/chalkboard_menu{ + pixel_y = -32 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"hxv" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/obj/structure/desk_bell, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"hxx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/locker) +"hxC" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Unit 1" + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"hxD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/education) +"hxK" = ( +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"hxM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/fluff/paper{ + dir = 1; + plane = -9 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"hxO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("minisat") + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"hyb" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hyc" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"hyf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"hyh" = ( +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"hyi" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hyj" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"hym" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/table/glass, +/obj/item/flashlight/lamp/green{ + pixel_y = 14; + pixel_x = 12 + }, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"hyo" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/service/lawoffice) +"hyw" = ( +/obj/structure/closet/crate/grave, +/obj/item/bouquet/rose, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"hyz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"hyH" = ( +/obj/structure/sign/calendar/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/fore) +"hyQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"hyS" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hyU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"hyV" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"hzk" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"hzt" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"hzA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"hzH" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/brig/lower) +"hzJ" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"hzL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"hzQ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"hzX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"hzZ" = ( +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"hAa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison) +"hAd" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/medbay/lobby) +"hAe" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"hAv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/donk, +/area/station/cargo/miningoffice) +"hAA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/obj/effect/spawner/random/decoration/ornament, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"hAH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"hAK" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"hAL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"hAN" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"hAQ" = ( +/obj/effect/turf_decal/bot_red, +/obj/machinery/portable_atmospherics/canister/bz, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/science) +"hAW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"hBb" = ( +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/service/theater) +"hBh" = ( +/turf/open/floor/iron/stairs/left, +/area/station/engineering/gravity_generator) +"hBm" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"hBp" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw/style_2, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"hBv" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"hBE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = -7; + pixel_y = -24; + req_access = list("xenobiology") + }, +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"hBF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"hCc" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"hCf" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#5971a6" + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"hCg" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/cigbutt/cigarbutt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"hCh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"hCs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"hCu" = ( +/obj/machinery/food_cart, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"hCz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hCA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"hCH" = ( +/obj/structure/flora/grass/green/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/rock/icy/style_random, +/obj/structure/flora/bush/snow/style_5, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"hCI" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"hCP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/disposal) +"hCV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/project) +"hCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/starboard) +"hCZ" = ( +/turf/closed/wall, +/area/station/maintenance/port/fore) +"hDa" = ( +/obj/item/clothing/head/costume/party, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid4" + }, +/area/space/nearstation) +"hDd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"hDf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"hDo" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"hDq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hDw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/light/directional/west, +/obj/machinery/button/door/directional/west{ + pixel_y = 6; + name = "Privacy Shutters Control"; + id = "ceprivacy"; + req_one_access = list("ce") + }, +/obj/structure/cable, +/obj/machinery/keycard_auth/wall_mounted/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"hDB" = ( +/obj/structure/rack, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/thermal_regulator, +/obj/item/mod/module/signlang_radio, +/turf/open/floor/iron/dark, +/area/station/security/office) +"hDC" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"hDH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"hDT" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hDW" = ( +/obj/machinery/incident_display/delam/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"hDY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/maintenance/aft/greater) +"hEm" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hEu" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"hEB" = ( +/obj/structure/fluff/paper{ + dir = 1; + plane = -9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/modular_computer/preset/civilian, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"hEC" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/storage) +"hEH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"hEW" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/computer/order_console/bitrunning{ + pixel_y = 1 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_y = 17; + pixel_x = 7 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/bitrunning/den) +"hEZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"hFa" = ( +/obj/effect/spawner/random/trash/mopbucket, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hFb" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hFc" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/grass, +/area/station/commons/lounge) +"hFq" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hFr" = ( +/turf/open/misc/dirt/dark/station/airless, +/area/space/nearstation) +"hFx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"hFz" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"hFA" = ( +/obj/machinery/conveyor{ + id = "garbage"; + dir = 10 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"hFB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"hFC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/east, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hFE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/dim/directional/south, +/obj/effect/mine/sound/bwoink, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"hFG" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) +"hFI" = ( +/obj/effect/spawner/random/decoration/statue, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"hFK" = ( +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hFM" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hFV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"hGa" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/north, +/obj/structure/window/reinforced/plasma/spawner/directional/south, +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"hGd" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"hGh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hGi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/escape) +"hGl" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"hGv" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"hGO" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/glass, +/obj/item/flashlight/lamp, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"hGQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"hGS" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hHa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"hHd" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hHg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"hHj" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/turf_decal/trimline/dark/end, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"hHk" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"hHl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"hHo" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"hHt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"hHw" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/large/style_random, +/obj/structure/flora/rock/pile/jungle/large/style_2{ + pixel_x = 0 + }, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"hHz" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"hHB" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"hHK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"hHN" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/commons/dorms) +"hHU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"hIb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"hIc" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"hIe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"hIg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"hIl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"hIo" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hIC" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hIF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/table/glass, +/obj/item/wirecutters, +/obj/item/screwdriver{ + pixel_y = 11 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"hIK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/fore/lesser) +"hIM" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid3" + }, +/area/space/nearstation) +"hIP" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"hJl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hJq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/safety_eye_protection/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"hJv" = ( +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hJA" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"hJT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab" + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"hJX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/bomb) +"hJY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"hKb" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"hKe" = ( +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 1 + }, +/area/station/maintenance/port/aft) +"hKg" = ( +/obj/item/pipe_painter, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"hKn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"hKx" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hKz" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"hKD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"hKI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/office) +"hKJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"hKL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"hKN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"hLb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"hLg" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/machinery/telecomms/server/presets/supply, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"hLh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod3, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + space_dir = 1 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"hLl" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 9 + }, +/obj/machinery/newscaster/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"hLo" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hLp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"hLt" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/head/utility/welding, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/obj/machinery/camera/directional/east{ + c_tag = "MiniSat Service Bay"; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/service) +"hLu" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"hLv" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"hLG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/item/clothing/head/cone, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"hLM" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"hLN" = ( +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/cargo/lower) +"hLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_y = 7; + pixel_x = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hLU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"hLY" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"hMf" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"hMj" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"hMo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"hMs" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + pixel_y = -26; + pixel_x = -7; + id = "rdoffice"; + req_access = list("rd"); + name = "Privacy Control" + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/machinery/keycard_auth/wall_mounted/directional/south{ + pixel_x = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"hMu" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"hMz" = ( +/obj/structure/sign/departments/science/alt/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"hMB" = ( +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"hMC" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/maintenance/central) +"hMH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"hMJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"hMP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"hMS" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/plate, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"hMT" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 to Pure" + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/dark/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"hMU" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"hMV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hNa" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/central) +"hNd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"hNs" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/transport/linear/public, +/obj/machinery/elevator_control_panel/directional/north{ + linked_elevator_id = "BridgeElevator"; + preset_destination_names = list("2" = "Bridge Bottom", "3" = "Bridge Upper"); + req_access = list("command") + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"hNt" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"hNu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"hNv" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hNz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/hedge, +/obj/structure/sign/directions/engineering/directional/south{ + pixel_y = -40 + }, +/obj/structure/sign/directions/dorms/directional/south{ + pixel_y = -24; + dir = 8 + }, +/obj/structure/sign/directions/evac/directional/south{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"hNB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"hNF" = ( +/obj/machinery/vending/sustenance, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"hNK" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"hNN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"hNP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"hNY" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"hOc" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hOf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/storage) +"hOj" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/sign/map/left{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/item/storage/lockbox/medal{ + pixel_y = 3 + }, +/obj/item/melee/chainofcommand, +/obj/item/hand_tele, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Captain's Storage"; + req_access = list("captain") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"hOq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"hOw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"hOD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Greenroom Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"hOF" = ( +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -3; + pixel_y = -6 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"hOH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"hOJ" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hOL" = ( +/obj/structure/hedge, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"hOM" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/conveyor{ + dir = 4; + id = "janigarbage" + }, +/obj/effect/spawner/random/trash/garbage, +/obj/machinery/light/small/red/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/janitor) +"hOP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"hOU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"hOV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"hOZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Detective's Office Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"hPa" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/turf/open/floor/grass, +/area/station/security/office) +"hPb" = ( +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"hPc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"hPd" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hPm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"hPp" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/pai_card, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"hPq" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit/black/skirt, +/obj/item/clothing/under/suit/black, +/obj/machinery/requests_console/auto_name/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"hPt" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/railing, +/obj/machinery/smartfridge/drying, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"hPu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood/fancy/orange, +/obj/item/storage/backpack/duffelbag/clown{ + pixel_y = 9 + }, +/obj/item/clothing/mask/gas/clown_hat, +/obj/item/bikehorn{ + pixel_y = 6 + }, +/obj/structure/mirror/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"hPD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hPF" = ( +/obj/item/wheelchair, +/obj/structure/broken_flooring/pile/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"hPG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + listening = 0; + name = "Radio Broadcast Channel"; + pixel_y = 3 + }, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/fore) +"hQb" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"hQf" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"hQg" = ( +/obj/structure/fireplace{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_x = -16; + pixel_y = -7 + }, +/turf/open/floor/stone, +/area/station/command/meeting_room) +"hQk" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"hQo" = ( +/obj/structure/hedge, +/obj/structure/sign/painting/large/library{ + dir = 8; + pixel_x = -29 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"hQt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/checkpoint/engineering) +"hQx" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid10" + }, +/area/space/nearstation) +"hQz" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/station/maintenance/central) +"hQD" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/breakroom) +"hQH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"hQJ" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hQM" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/machinery/light/small/directional/south, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/fore) +"hQT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters"; + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"hRb" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"hRc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/power/solar_control{ + dir = 4; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/solars/port/fore) +"hRd" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"hRh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/light/cold/dim/directional/south, +/obj/machinery/digital_clock/directional/south, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/port/aft) +"hRi" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hRk" = ( +/obj/structure/table, +/obj/item/toy/katana, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"hRo" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"hRp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"hRq" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/railing, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"hRr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"hRt" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"hRv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"hRx" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/secure_safe/directional/north, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"hRy" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"hRC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/item/reagent_containers/cup/soda_cans{ + pixel_y = 11; + pixel_x = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"hRI" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hRY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater) +"hSa" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"hSd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"hSs" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hSt" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"hSu" = ( +/obj/structure/railing/corner{ + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"hSx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/clothing/head/costume/party, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hSA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"hSG" = ( +/obj/item/shovel/spade, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/machinery/hydroponics/soil, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/grass{ + icon_state = "grass1" + }, +/area/station/security/prison/garden) +"hSJ" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"hSM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"hSN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/supply) +"hST" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"hSU" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/item/reagent_containers/cup/glass/bottle/maltliquor{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka{ + pixel_y = 18; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/ale{ + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/bottle/fernet{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/bottle/bitters{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/railing, +/obj/machinery/light/small/directional/south, +/obj/structure/table/reinforced/plasmarglass, +/obj/structure/marker_beacon/fuchsia, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"hSW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"hSX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"hSY" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Engineering" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"hSZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison) +"hTd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"hTo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/item/storage/bag/construction, +/obj/item/storage/bag/construction, +/obj/item/storage/bag/construction, +/obj/structure/rack, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"hTv" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"hTz" = ( +/obj/structure/rack, +/obj/item/emergency_bed, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/medical/patients_rooms) +"hTB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"hTH" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"hTN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"hTO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"hTW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"hUa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/aft) +"hUj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"hUq" = ( +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"hUr" = ( +/turf/closed/wall/r_wall, +/area/station/security/office) +"hUs" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"hUz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hUC" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/garden) +"hUF" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"hUG" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/explab) +"hUH" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/disposal) +"hUM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"hUT" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"hUX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/lockers) +"hVc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/hydroponics) +"hVd" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"hVf" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"hVo" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"hVr" = ( +/obj/structure/flora/tree/jungle/small/style_3, +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_2, +/turf/open/floor/grass, +/area/station/security/prison) +"hVs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/science/ordnance) +"hVu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Gas"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"hVv" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/closet/crate/goldcrate, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"hVw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/library) +"hVx" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/grass, +/area/station/command/corporate_suite) +"hVy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"hVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"hVP" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark_blue/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"hVS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"hWi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"hWp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/firealarm/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"hWq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"hWt" = ( +/obj/structure/flora/bush/large, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"hWx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/railing, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"hWD" = ( +/obj/effect/spawner/random/decoration/statue, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"hWE" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"hWJ" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hWL" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"hWM" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"hWT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"hXa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"hXd" = ( +/turf/closed/mineral/random/snow, +/area/space/nearstation) +"hXh" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/gravity_generator/main, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"hXl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"hXm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/decal/cleanable/wrapping/pinata, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hXn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"hXt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"hXB" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"hXC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/clothing/mask/surgical{ + pixel_y = -6 + }, +/obj/structure/sign/poster/official/periodic_table/directional/west, +/obj/machinery/light/small/red/directional/west, +/obj/structure/fluff/shower_drain, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/bridge) +"hXE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"hXH" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"hXJ" = ( +/obj/effect/turf_decal/siding, +/obj/structure/table/glass, +/obj/item/experi_scanner{ + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"hXY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"hYd" = ( +/obj/structure/lattice, +/obj/item/reagent_containers/cup/glass/bottle/goldschlager, +/turf/open/space/basic, +/area/space/nearstation) +"hYq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"hYs" = ( +/obj/machinery/holopad, +/turf/open/floor/glass/reinforced, +/area/station/science/lower) +"hYy" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"hYF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"hYG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/genetics) +"hYH" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Engineering Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"hYK" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/primary/port) +"hYL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/sign/departments/evac/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"hYM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/hallway/primary/fore) +"hYN" = ( +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"hYO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"hYX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/bookcase/random/reference, +/obj/machinery/status_display/evac/directional/north, +/obj/item/ph_booklet{ + pixel_y = 14; + pixel_x = -8 + }, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"hYY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/plushie, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/breakroom) +"hZb" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/jungle/a/style_random, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"hZg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/orange, +/area/station/commons/dorms) +"hZk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/storage) +"hZr" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"hZs" = ( +/obj/item/knife/plastic, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"hZu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"hZv" = ( +/obj/structure/cable, +/obj/structure/chair/sofa/bench, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"hZx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"hZD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"hZN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"hZS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/bush/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"hZV" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"hZX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"hZZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"iac" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"iad" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/cultivator, +/obj/item/wirecutters, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"iae" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/item/wrench, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ial" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"iar" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"ias" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"iau" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iaC" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"iaD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"iaJ" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"iaK" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/structure/railing, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/storage) +"iaN" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"iaR" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"iaU" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"iaZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"ibj" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"ibl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ibp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port) +"ibr" = ( +/obj/structure/fluff/paper{ + dir = 1; + plane = -9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north{ + pixel_y = 38; + pixel_x = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/pen/red{ + pixel_x = 8 + }, +/obj/item/cigbutt{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/photo/old{ + pixel_y = 32 + }, +/obj/item/photo/old{ + pixel_x = 16; + pixel_y = 30 + }, +/obj/item/photo/old{ + pixel_x = 7; + pixel_y = 28 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"ibs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/project) +"iby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"ibz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos) +"ibC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"ibV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"icj" = ( +/turf/closed/wall, +/area/station/medical/office) +"icp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"icr" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"ics" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"icu" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"icw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"icz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/visit) +"icE" = ( +/obj/structure/railing, +/obj/item/reagent_containers/blood, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"icM" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"icQ" = ( +/turf/open/floor/glass, +/area/station/maintenance/aft/greater) +"icR" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "ldorm2"; + name = "Curtains" + }, +/turf/open/floor/plating, +/area/station/commons/dorms) +"icW" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"ida" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"idj" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"idk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/cargo/warehouse) +"idq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Cell 1"; + id_tag = "Cell1" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"idB" = ( +/obj/structure/chair/sofa/corp/right, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"idE" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/south, +/obj/machinery/shower/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 1 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"idI" = ( +/turf/closed/wall, +/area/station/service/janitor) +"idK" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/maintenance/central) +"idM" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/broken_flooring/pile/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"idN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Science" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"idQ" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/chair/office/light{ + dir = 8; + name = "Defense" + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"idR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/dresser, +/obj/item/radio/intercom/directional/west, +/obj/item/clothing/glasses/regular{ + pixel_y = 9 + }, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"idS" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/toy/figure/warden{ + pixel_y = 10; + pixel_x = 7 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"ied" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"iee" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ieg" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iek" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"ieo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"iep" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"ieH" = ( +/obj/machinery/door/airlock/grunge{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"ieI" = ( +/obj/structure/railing/corner, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ieJ" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"ieK" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/computer/security/telescreen/auxbase/directional/north, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"ieN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/aft/lesser) +"ieO" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ieQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"ieT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ieY" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ifj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"ifn" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/reagent_containers/cup/glass/bottle/beer, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"ify" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 11; + pixel_x = -4 + }, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/borghypo/borgshaker{ + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"ifE" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"ifH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"ifI" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"ifM" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light_switch/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"ifQ" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Permabrig Kitchen" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"ifR" = ( +/obj/structure/sign/flag/mars/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"igb" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"igc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"igh" = ( +/turf/closed/mineral/volcanic, +/area/space/nearstation) +"igj" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"igk" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"igl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"igx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/service/boutique) +"igL" = ( +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"igM" = ( +/obj/structure/chair/plastic, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"igN" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"igQ" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"igS" = ( +/obj/structure/sign/departments/vault/directional/north{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"igU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/biogenerator, +/turf/open/floor/stone, +/area/station/service/hydroponics) +"igW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs, +/area/station/maintenance/department/medical) +"igZ" = ( +/turf/open/floor/iron/stairs/left{ + dir = 8; + color = "#3d3e42" + }, +/area/station/command) +"ihf" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/cargo) +"ihh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/courtroom) +"ihi" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"ihl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"ihn" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Holodeck - Aft 1"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"iho" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ihs" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"iht" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"ihv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison/work) +"ihz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"ihA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ihI" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/dna_infuser, +/obj/item/infuser_book, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"ihJ" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"ihL" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"ihO" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"ihR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/arrow_ccw, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"iik" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/griddle, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/command/corporate_suite) +"iip" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"iir" = ( +/obj/machinery/duct, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"iiC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/central) +"iiE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/disposal) +"iiF" = ( +/obj/structure/closet{ + name = "evidence closet 4" + }, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"iiQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/station/science/breakroom) +"iiR" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"iiS" = ( +/obj/item/banner/command/mundane, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"iiT" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"iiZ" = ( +/obj/docking_port/stationary/mining_home/common{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"ijk" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/cup/watering_can, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"ijm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"ijn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"ijt" = ( +/obj/structure/lattice/catwalk, +/obj/item/instrument/guitar, +/obj/item/clothing/head/cone{ + pixel_y = 12; + pixel_x = -6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ijx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"ijB" = ( +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ijH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/banner/science/mundane, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"ijT" = ( +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"ijU" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"ijV" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"ijW" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ijY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"ika" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"ikf" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/brimdust{ + plane = -7; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/spawner/random/food_or_drink/donuts, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"ikg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/item/trash/can, +/obj/effect/decal/cleanable/generic, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ikn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/prison) +"ikr" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"iku" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ikz" = ( +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/turf/open/floor/iron/white/smooth_edge, +/area/station/commons/fitness) +"ikI" = ( +/turf/open/floor/iron/stairs/left{ + color = "#5d341f" + }, +/area/station/cargo/mining_breakroom) +"ikN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/grime, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"ikQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"ikS" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/courtroom) +"ikV" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/structure/fireplace{ + fuel_added = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/breakroom) +"ila" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"ild" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ilr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Genetics Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/genetics, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"ils" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"ilu" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"ilw" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ilC" = ( +/obj/structure/table/optable, +/obj/machinery/vending/wallmed/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/command/heads_quarters/cmo) +"ilH" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"ilL" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/button/door/directional/west{ + id = "maintwindows"; + name = "Shutters Control" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"ilV" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"imb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"imc" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"imk" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"imm" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"imu" = ( +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"imA" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/cargo/storage) +"imC" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"imD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"imM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"imQ" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"imR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"imX" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ina" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"ind" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"ing" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"ink" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"ino" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"inw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"inC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/engine/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"inE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 10 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"inJ" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"inK" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Blast Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"inY" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/flatpack_cart, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/aft/lesser) +"ioh" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"ioj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"iok" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"iol" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/food/salad/fruit{ + pixel_y = 7 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"iom" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/carpet/blue, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ioq" = ( +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"iot" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/shower/directional/east, +/obj/structure/cable, +/obj/structure/fluff/shower_drain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"iox" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"ioB" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ioC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/item/target, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ioI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"ioQ" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"ipa" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ipc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/digital_clock/directional/west, +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/item/ph_booklet{ + pixel_y = -12 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"ipf" = ( +/obj/structure/window/spawner/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"ipg" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/stone, +/area/station/command/heads_quarters/captain) +"ipi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"ipk" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"ipl" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ipm" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/computer/pod/old, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ipr" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"ips" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"ipE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/aft/lesser) +"ipK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/juice/smallcarton{ + pixel_x = -14 + }, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"ipM" = ( +/obj/item/toy/plush/goatplushie{ + name = "Easteria"; + desc = "Despite its cuddly appearance and plush nature, it will... cuddle you up all the same?" + }, +/obj/item/staff, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ipO" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/chair/office{ + dir = 4; + name = "Prosecution" + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"ipP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ipX" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/machinery/pdapainter/security, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"iqj" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iqk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"iqm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/security/courtroom) +"iqp" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iqr" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"iqC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iqM" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/fuel_pellet, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"iqN" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"iqP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"iqQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"iqS" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/holopad, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"iqT" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"iqU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/rank/centcom/military, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/belt/security/webbing, +/obj/item/clothing/head/helmet/toggleable, +/obj/item/knife/combat/survival, +/obj/item/gun/energy/e_gun/mini, +/obj/item/clothing/mask/facescarf, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/glasses/hud/security/night, +/obj/item/clothing/neck/link_scryer/loaded, +/obj/structure/closet/secure_closet{ + req_access = list("armory"); + name = "Tactical Gear Locker" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"iqV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/cargo) +"iqZ" = ( +/obj/item/fish/pufferfish, +/obj/item/food/grown/carrot{ + pixel_x = 7; + preserved_food = 1 + }, +/turf/open/water/beach, +/area/station/maintenance/fore/lesser) +"ira" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"ird" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"irg" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"iro" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"irs" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"irw" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"irx" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai_upload) +"irB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"irD" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"irE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"irK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"irZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"isi" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"iso" = ( +/turf/open/floor/iron/white, +/area/station/science/research) +"ist" = ( +/obj/structure/flora/rock/style_2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"isu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"isw" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"isy" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hos) +"isA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"isE" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"isG" = ( +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"isI" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"isM" = ( +/obj/machinery/defibrillator_mount/directional/south, +/obj/structure/table/glass, +/obj/item/surgery_tray/full, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/medical/surgery/theatre) +"isT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"isU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"isW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"isY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"ita" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/aft/lesser) +"ite" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ith" = ( +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"itj" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/hallway/secondary/service) +"ito" = ( +/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"itD" = ( +/obj/effect/turf_decal/loading_area/white{ + color = "#52B4E9"; + dir = 4; + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"itE" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"itO" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/table/wood/fancy/red, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"iua" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"iub" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/central) +"iue" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock" + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -24; + req_access = list("virology") + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"iug" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/item/banner/engineering/mundane, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"iui" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"iul" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iup" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/science/breakroom) +"iuv" = ( +/obj/structure/table/wood, +/obj/item/storage/dice, +/turf/open/floor/wood/large, +/area/station/service/library) +"iuw" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"iuE" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/wallframe/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"iuF" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"iuG" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/west{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/maintenance/starboard/aft) +"iuL" = ( +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"iuO" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/carpet, +/area/station/service/greenroom) +"iuP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"iuR" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"iuT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"iuU" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ivp" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/medical/psychology) +"ivq" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/fuchsia, +/turf/open/floor/grass, +/area/station/service/library/lounge) +"ivB" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"ivD" = ( +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"ivH" = ( +/obj/structure/table/bronze, +/obj/item/mining_scanner, +/obj/item/pickaxe/mini, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"ivJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"ivN" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/grenade/chem_grenade{ + pixel_y = 17; + pixel_x = -7 + }, +/obj/item/stack/cable_coil{ + pixel_y = 3 + }, +/obj/item/grenade/chem_grenade{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade{ + pixel_y = 1; + pixel_x = -7 + }, +/obj/item/screwdriver{ + pixel_y = -5 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"ivT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/wood/glass{ + name = "Theater Green Room" + }, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/turf/open/floor/wood/tile, +/area/station/service/theater) +"iwd" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"iwh" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"iwl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iwo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iwA" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"iwC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/chair/sofa/corp/right, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"iwD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"iwG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) +"iwN" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"iwP" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"iwR" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"iwU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/lower) +"iwW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/disposal) +"ixb" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ixd" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ixf" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"ixk" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"ixl" = ( +/obj/structure/hedge/opaque, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"ixm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"ixr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"ixt" = ( +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/port) +"ixw" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ixB" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"ixC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/sign/warning/docking/directional/north, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ixQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"ixV" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"ixZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"iya" = ( +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"iye" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"iyl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"iyq" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/grass, +/area/station/service/janitor) +"iyr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"iyB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/closed/wall, +/area/station/service/minibar) +"iyI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/central) +"iyJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iyM" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"iyS" = ( +/turf/closed/wall, +/area/station/security/checkpoint/science) +"iyZ" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Grav Gen Maintenance" + }, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) +"izb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"izc" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"izh" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"izv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"izI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "SecJusticeChamber"; + name = "Justice Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/station/security/execution/education) +"izJ" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"izM" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"izQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant1, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"iAb" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/records/security/laptop{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"iAl" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/filingcabinet, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"iAw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iAG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"iAH" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"iAI" = ( +/obj/structure/sign/flag/tizira/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"iAJ" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"iAO" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron, +/area/station/cargo/storage) +"iAR" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/maintenance/fore/greater) +"iAU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iAX" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"iAY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iBc" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/station/science/ordnance) +"iBl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"iBn" = ( +/obj/structure/mop_bucket, +/obj/item/mop, +/obj/item/clothing/mask/animal/pig, +/obj/effect/decal/cleanable/crayon/x, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iBs" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/flask/det{ + pixel_x = -12 + }, +/obj/item/folder/red{ + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/item/hand_labeler{ + pixel_y = 3; + pixel_x = 17 + }, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"iBB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"iBD" = ( +/obj/structure/noticeboard/directional/north{ + desc = "A memorial wall for pinning mementos upon."; + name = "memorial board" + }, +/obj/item/book/bible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/table/wood/fancy, +/obj/item/book/bible{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"iBJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"iBN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/port) +"iBQ" = ( +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"iBR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/bridge) +"iBS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"iBU" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/plate, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"iCa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"iCd" = ( +/turf/closed/wall/r_wall, +/area/station/security/lockers) +"iCi" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell, +/obj/machinery/door/window/right/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"iCj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iCn" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iCo" = ( +/obj/structure/chair/stool/directional/east, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/turf/open/floor/iron/white/smooth_edge, +/area/station/commons/fitness) +"iCr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Psychologist's Office Curtains"; + id = "psychpriv" + }, +/turf/open/floor/plating, +/area/station/medical/psychology) +"iCx" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/security/cell/left/directional/north{ + id = "Cell 3"; + name = "Cell 3" + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/brig) +"iCB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"iCF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","rd","xeno") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"iCG" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"iCL" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/cable_coil/five, +/obj/item/circuitboard/machine/vendor, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"iCV" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"iDa" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/lavendergrass, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"iDd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/multilayer/connected, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"iDe" = ( +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"iDk" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"iDt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/head/cone{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/clothing/head/cone{ + pixel_x = -3 + }, +/obj/item/clothing/head/cone{ + pixel_x = 9; + pixel_y = 11 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iDu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"iDy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"iDN" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"iDS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"iEb" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"iEi" = ( +/obj/structure/closet/l3closet/janitor, +/obj/item/clothing/gloves/color/orange, +/obj/effect/turf_decal/bot/left, +/obj/effect/turf_decal/trimline/purple, +/obj/item/clothing/suit/hooded/wintercoat/janitor, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"iEm" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"iEp" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"iEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"iEv" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/free_drone/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"iEK" = ( +/obj/machinery/door/airlock/security{ + id_tag = "IsolationCell"; + name = "Isolation Cell" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"iEO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"iET" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iEY" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"iFg" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"iFh" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Xenobio Pen 2 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"iFi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"iFk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/sign/warning/electric_shock/directional/north, +/obj/machinery/power/smes, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/solars/port/fore) +"iFt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"iFu" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/break_room) +"iFv" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"iFz" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"iFA" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"iFC" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"iFH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/sign/poster/official/obey/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"iFK" = ( +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iFL" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"iFP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iFQ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/structure/fireplace{ + pixel_x = -32 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_x = -16; + pixel_y = -7 + }, +/turf/open/floor/stone, +/area/station/command/heads_quarters/captain) +"iGb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"iGd" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"iGe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"iGi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"iGj" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"iGm" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"iGn" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/clothing/gloves/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"iGr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"iGz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/briefcase/secure{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/structure/secure_safe/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"iGB" = ( +/obj/machinery/door/window/right/directional/east{ + name = "Ordnance Freezer Chamber Access"; + req_access = list("ordnance") + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"iGE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"iGG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"iGL" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/security/brig) +"iGQ" = ( +/obj/item/cigbutt{ + pixel_x = -13; + pixel_y = 7 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"iGT" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"iGZ" = ( +/obj/machinery/newscaster/directional/south, +/obj/structure/marker_beacon/lime, +/obj/item/seeds/cannabis, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/hydroponics/soil, +/obj/machinery/duct, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"iHg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"iHh" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"iHi" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/disposal) +"iHo" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iHp" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iHr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"iHt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"iHw" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"iHA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"iHF" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/mob/living/basic/lizard/wags_his_tail, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Janitor Junction" + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"iHJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"iHK" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/nuke_storage) +"iHR" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iHX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"iHY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"iId" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/wideplating_new/light/corner, +/obj/structure/chair/stool/bamboo{ + pixel_y = 16 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/rush_propaganda/directional/north, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"iIe" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"iIl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"iIp" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"iIr" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"iIt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/bag/money, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"iIx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/requests_console/directional/south{ + department = "Bridge"; + name = "Bridge Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"iID" = ( +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"iIG" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"iIR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/chair/stool/bar/directional/east, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"iIS" = ( +/obj/item/reagent_containers/dropper{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd","xeno") + }, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"iJc" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"iJd" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/table/reinforced/rglass, +/obj/item/aicard, +/obj/item/pai_card, +/obj/item/circuitboard/aicore, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"iJe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/lockers) +"iJn" = ( +/obj/structure/bookcase/random/reference, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"iJp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"iJI" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iJJ" = ( +/obj/structure/statue/gold/hos, +/obj/structure/marker_beacon/yellow, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"iJL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/storage) +"iJV" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"iJW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"iJX" = ( +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"iKe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"iKn" = ( +/obj/structure/plasticflaps/opaque{ + name = "Service Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + location = "Service" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"iKq" = ( +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "UndergroundCasino" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"iKr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iKB" = ( +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"iKD" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"iKH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iKL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iKT" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/sign/poster/contraband/bountyhunters/directional/south, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"iKY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/marker_beacon/jade, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"iKZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"iLb" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iLg" = ( +/obj/effect/turf_decal/trimline/dark/end, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"iLn" = ( +/obj/machinery/computer/security, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"iLt" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iLx" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"iLA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"iLB" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16; + pixel_x = -4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"iLD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/commons/dorms) +"iLF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"iLH" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"iLK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/structure/fluff/paper{ + dir = 1; + plane = -9 + }, +/obj/item/book/manual/wiki/detective{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/noticeboard/directional/north{ + pixel_y = 38; + pixel_x = -4 + }, +/obj/item/photo/old{ + pixel_x = -7; + pixel_y = 32 + }, +/obj/item/photo/old{ + pixel_y = 29 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"iLL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"iLP" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"iLR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"iLU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"iMc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"iMd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"iMg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/right/directional/west{ + req_access = list("security") + }, +/obj/item/paper, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "cargosecprivacy"; + name = "Privacy Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"iMj" = ( +/obj/machinery/telecomms/processor/preset_two, +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"iMo" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/south, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"iMp" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"iMs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/station/maintenance/aft/greater) +"iMt" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/main) +"iMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"iMx" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/medbay/central) +"iMA" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"iMP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"iMQ" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iMV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"iMY" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"iNb" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"iNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iNh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"iNl" = ( +/obj/machinery/mass_driver/ordnance{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"iNo" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"iNq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"iNt" = ( +/obj/structure/chair/sofa/corp/corner, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"iNA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"iNK" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iNO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"iNR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"iNX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"iOb" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"iOf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"iOg" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iOj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"iOl" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_y = 5 + }, +/obj/item/newspaper, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"iOw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"iOz" = ( +/obj/structure/table/wood, +/obj/item/table_clock{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/phone{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"iOF" = ( +/obj/structure/flora/grass/brown/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/tree/dead/style_6, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"iOS" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"iPf" = ( +/obj/machinery/computer/security/hos, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"iPh" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/obj/structure/sign/calendar/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"iPi" = ( +/obj/structure/chair/stool/directional/south{ + pixel_y = 21 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 34 + }, +/obj/machinery/light/small/dim/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/boutique) +"iPk" = ( +/obj/structure/sign/departments/medbay/alt/directional/south, +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iPn" = ( +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iPp" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"iPr" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/service/library/upper) +"iPw" = ( +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iPA" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"iPF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"iPG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_2, +/obj/item/toy/captainsaid, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"iPR" = ( +/obj/machinery/button/elevator/directional/east{ + id = "Bridge2Elevator" + }, +/obj/machinery/lift_indicator/directional/east{ + pixel_x = 31; + pixel_y = -1; + linked_elevator_id = "Bridge2Elevator" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning, +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + transport_linked_id = "Bridge2Elevator"; + req_access = null + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/textured_large, +/area/station/command) +"iPU" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"iPX" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/virology/glass{ + name = "Break Room" + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"iQc" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"iQe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/solars/port/fore) +"iQg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"iQh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"iQi" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"iQp" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"iQr" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"iQu" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/cargo) +"iQB" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/bluespace_vendor/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"iQC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"iQD" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/rock/pile/jungle/large/style_2{ + pixel_x = 0 + }, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/tree/jungle/small/style_3, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"iQJ" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"iQM" = ( +/obj/structure/table/wood/fancy, +/obj/item/instrument/harmonica, +/obj/item/instrument/guitar, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"iQV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iQZ" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iRa" = ( +/obj/effect/decal/cleanable/vomit, +/obj/item/reagent_containers/pill/insulin{ + pixel_y = 7; + pixel_x = -5 + }, +/obj/structure/chair/stool/directional/east, +/obj/structure/sign/warning/electric_shock/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/department/cargo) +"iRb" = ( +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/official/report_crimes/directional/north, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"iRe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iRj" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/glass, +/area/station/service/library/upper) +"iRu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"iRG" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"iRI" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"iRJ" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/maintenance/fore/lesser) +"iRL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"iRP" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"iRT" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"iRW" = ( +/obj/structure/chair/sofa/bamboo/left{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"iSa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"iSi" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/chair/stool/directional/east, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"iSn" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/trimline/red, +/obj/item/key/security, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"iSy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"iSN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iSP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"iSS" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"iSZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/turf/open/openspace, +/area/station/service/chapel/funeral) +"iTb" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"iTj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"iTm" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"iTn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"iTr" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"iTJ" = ( +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"iTM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"iTN" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"iTP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"iTT" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/babel_device/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"iTW" = ( +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"iTX" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"iUp" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/chair/stool/directional/south, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/department/bridge) +"iUq" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "Pharmacy Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"iUv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"iUA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"iUL" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/cargo/storage) +"iUM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "qmprivacy"; + name = "Privacy Shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hos) +"iUX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"iVa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/fore) +"iVe" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command) +"iVg" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/structure/hedge, +/obj/structure/railing, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"iVh" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iVm" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"iVp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"iVx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"iVA" = ( +/obj/structure/sign/clock/directional/north, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot_white, +/obj/item/toy/figure/assistant{ + pixel_y = 17; + pixel_x = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"iVK" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/checkpoint/customs) +"iVN" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iVR" = ( +/obj/structure/hedge, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"iVZ" = ( +/obj/effect/turf_decal/siding/end{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/hallway/primary/fore) +"iWf" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/decal/cleanable/cobweb, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/port/aft) +"iWi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"iWl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/science) +"iWm" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/library/lounge) +"iWq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/chem_storage) +"iWr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"iWt" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"iWu" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lab) +"iWv" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"iWC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/official/bless_this_spess/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/chair/sofa/corp/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"iWG" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/stack/tile/wood, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"iWJ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"iWL" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"iWM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"iWP" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iXj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"iXk" = ( +/turf/closed/wall/r_wall, +/area/station/security/breakroom) +"iXn" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iXo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"iXs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/holding_cell) +"iXu" = ( +/turf/open/floor/iron/stairs/medium, +/area/station/engineering/gravity_generator) +"iXy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"iXF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"iXJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/central) +"iXK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"iYc" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/white, +/area/station/science/lower) +"iYe" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"iYf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/glass{ + name = "Public Garden" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics/garden) +"iYk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"iYr" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Auxiliry Dock Storage Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"iYz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"iYC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"iYE" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/warden) +"iYN" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"iYP" = ( +/turf/open/floor/iron/white, +/area/station/medical/lower) +"iYU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"iYZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"iZa" = ( +/obj/structure/flora/rock/pile/jungle/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass{ + icon_state = "grass3" + }, +/area/station/security/prison/garden) +"iZb" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"iZf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/dorms) +"iZi" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/structure/cable, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/white/textured_large, +/area/station/security/prison/workout) +"iZk" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"iZm" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "fishstore"; + name = "Fish Store Shutters" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"iZn" = ( +/obj/machinery/light/directional/north, +/obj/machinery/photobooth, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"iZw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/commons/vacant_room/commissary) +"iZx" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/official/random/directional/west, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"iZA" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"iZG" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/cargo) +"iZM" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P12-Port-Hallway"; + codes_txt = "patrol;next_patrol=C4-Port-Central-B" + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"iZN" = ( +/obj/item/pillow{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"iZQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"iZV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"jal" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"jay" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/modular_computer/preset/curator{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"jaB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"jaK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/clock/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"jaM" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/iron/dark/corner, +/area/station/cargo/lower) +"jaT" = ( +/obj/structure/hedge, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"jaV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"jaY" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/library/lounge) +"jbf" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Cabin 4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"jbp" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"jbw" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jbD" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/navbeacon{ + location = "F11-Cargo"; + codes_txt = "patrol;next_patrol=F12-Science" + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"jbJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jbL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/server) +"jbO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/item/clothing/glasses/cold{ + pixel_y = 12 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"jbQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"jbW" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"jcd" = ( +/obj/machinery/modular_computer/preset/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"jcf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random/food_or_drink/cake_ingredients{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"jck" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/aft) +"jcm" = ( +/obj/structure/table, +/obj/item/newspaper, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"jct" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"jcB" = ( +/obj/structure/railing, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jcJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"jcK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"jcL" = ( +/obj/effect/turf_decal/siding/dark, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"jcT" = ( +/obj/structure/disposaloutlet{ + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"jcX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"jdd" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jde" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rack, +/obj/item/wirecutters, +/obj/item/wrench, +/obj/structure/sign/poster/official/moth_piping/directional/south, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/maintenance/starboard/aft) +"jdf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jdi" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"jdl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "holodeck" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"jdn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"jdo" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"jdr" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"jdv" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"jdC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/processing) +"jdL" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"jdM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"jdQ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 7 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"jdS" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"jdT" = ( +/obj/machinery/computer/shuttle/labor, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"jdV" = ( +/obj/machinery/door/window/left/directional/east{ + name = "Ordnance Freezer Chamber Access"; + req_access = list("ordnance") + }, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{ + dir = 4 + }, +/obj/machinery/meter/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"jdW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"jdZ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"jed" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jef" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/bci_implanter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"jeh" = ( +/obj/item/banner/red, +/obj/machinery/light/floor{ + color = "#ff8080" + }, +/turf/open/floor/circuit/red, +/area/station/commons/fitness/recreation/lasertag) +"jel" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"jer" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/aft/greater) +"jeA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "cargosecprivacy"; + name = "Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/security/checkpoint/supply) +"jeI" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + dir = 1; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"jeN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"jeQ" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"jeU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/bookcase/random, +/obj/structure/sign/clock/directional/north, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 16 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"jfd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/structure/chair, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"jfo" = ( +/obj/structure/cable, +/obj/machinery/navbeacon{ + location = "A2-Engineering"; + codes_txt = "patrol;next_patrol=A3-Aft-Hallway" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"jfq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/window/right/directional/east{ + name = "Pharmacy Desk"; + req_access = list("pharmacy") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "pharmacy_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"jfr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"jft" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"jfw" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"jfz" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/item/toy/plush/moth{ + name = "Mender Moff" + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"jfE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/fore) +"jfF" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"jfH" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"jfI" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"jfT" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/light/floor, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/grassy/style_2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/medical/office) +"jfX" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/vending/cigarette, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"jga" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_y = -2; + pixel_x = 2 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"jge" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"jgh" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"jgm" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/medical/lower) +"jgs" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -16; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = -15 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/machinery/recharger{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"jgz" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"jgA" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"jgD" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"jgM" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/structure/marker_beacon/jade, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jgO" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/table/reinforced/rglass, +/obj/item/aicard{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/rd/directional/south, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jgY" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"jhf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/green, +/obj/effect/turf_decal/trimline/green, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"jhk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"jhA" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"jhD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"jhE" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jhL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"jhS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"jig" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/duct, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jik" = ( +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"jin" = ( +/obj/effect/turf_decal/trimline/purple/end{ + dir = 4 + }, +/obj/machinery/shower/directional/east, +/obj/structure/sink/directional/south, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"jit" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jix" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"jiy" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"jiB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Courtroom Detention Cell" + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"jiF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"jiN" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/north{ + pixel_x = 6; + pixel_y = 26 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"jiO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"jiQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/office) +"jiX" = ( +/obj/structure/table, +/obj/item/transfer_valve{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/transfer_valve{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/transfer_valve{ + pixel_y = 3 + }, +/obj/item/transfer_valve{ + pixel_y = 3 + }, +/obj/item/transfer_valve{ + pixel_y = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"jja" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"jjf" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jjh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jji" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 1 + }, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/turf/open/floor/iron/white/textured_corner, +/area/station/security/prison/workout) +"jjj" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/breakroom) +"jjn" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"jjv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"jjw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"jjx" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/west, +/obj/structure/sign/poster/official/love_ian/directional/south, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"jjy" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/toy/cards/deck/blank{ + pixel_y = 3 + }, +/obj/item/toy/cards/deck{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/engineering/break_room) +"jjz" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"jjC" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/medical{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"jjE" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/cargo/lower) +"jjH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/book/manual/wiki/experimentor, +/turf/open/floor/engine, +/area/station/science/explab) +"jjI" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 3"; + id_tag = "Cell3" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"jjJ" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/structure/sign/departments/botany/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"jjS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"jjT" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"jjU" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jjY" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/curtain, +/obj/effect/turf_decal/trimline/yellow/end, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/left/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/engineering/break_room) +"jke" = ( +/obj/machinery/computer/upload/borg{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/door/window/left/directional/east{ + name = "Cyborg Upload Console Window"; + req_access = list("ai_upload") + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload) +"jkh" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/computer/gateway_control, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"jki" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"jkk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Detective's Office Curtains"; + id = "detpriv" + }, +/turf/open/floor/plating, +/area/station/security/detectives_office) +"jkp" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jkv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/item/surgery_tray/full, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/execution/education) +"jkx" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/main) +"jkE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"jkO" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/genetics) +"jkW" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jlC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/solars/port/fore) +"jlF" = ( +/obj/structure/sign/warning/directional/north, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jlH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/project) +"jlI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"jlQ" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"jlS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"jlV" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"jmd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Technology Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/obj/effect/landmark/navigate_destination/techstorage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"jmf" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jmk" = ( +/obj/machinery/power/turbine/core_rotor{ + dir = 4; + mapping_id = "main_turbine" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"jmo" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"jmG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"jmJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"jmM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"jmY" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"jmZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"jng" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"jnm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/light/small/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/engineering/main) +"jns" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"jnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"jnv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"jnN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jnP" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - Toxins" + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"jnW" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"jnX" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jnZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"joj" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"jop" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"joz" = ( +/obj/effect/turf_decal/trimline/white/arrow_ccw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"joB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"joJ" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/port) +"joK" = ( +/obj/effect/turf_decal/trimline/green, +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"joL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"joT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F2-Fore-Hallway"; + codes_txt = "patrol;next_patrol=F3-Medbay" + }, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/fore) +"jpa" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/banner/command/mundane, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jpc" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"jpi" = ( +/turf/closed/wall, +/area/station/maintenance/department/science) +"jpj" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/service/theater) +"jpp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/banner/medical/mundane, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"jps" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/hedge, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/funeral) +"jpu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/central) +"jpA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/broken_flooring/singular/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"jpB" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jpD" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"jpF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/light_switch/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"jpI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"jpJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"jpM" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"jpW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"jqa" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"jqe" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42" + }, +/area/station/maintenance/department/security) +"jqg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/secure_safe/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/fore) +"jql" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/digital_clock/directional/east, +/obj/item/surgery_tray/full, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"jqo" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jqp" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"jqr" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jqy" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"jqE" = ( +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater) +"jqJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"jqK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"jqQ" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/aisat/service"; + name = "Service Bay Turret Control"; + req_access = list("minisat"); + pixel_y = -27 + }, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"jqT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"jqV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"jqW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/structure/railing/corner/end, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/central) +"jqY" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_y = 2; + req_access = list("command"); + pixel_x = -7 + }, +/obj/machinery/keycard_auth{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jrb" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/medical/virology) +"jrf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/brig) +"jrk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"jrq" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"jrA" = ( +/obj/structure/chair/plastic, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jrC" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/mmi{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/mmi{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/item/mmi, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"jrE" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr"; + dir = 1 + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"jrK" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"jrS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"jrZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/duct, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/aft) +"jsa" = ( +/turf/open/floor/wood/large, +/area/station/service/library) +"jse" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"jsi" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"jsj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/razor{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/storage/box/hug{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/execution/education) +"jsm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Ports" + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jsn" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/science) +"jsr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"jsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"jsz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"jsF" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/banner/cargo/mundane, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"jsG" = ( +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"jsH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/medicine{ + pixel_y = 2; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/break_room) +"jsJ" = ( +/obj/structure/mannequin/skeleton, +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"jsM" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/tarot{ + pixel_y = 5; + pixel_x = -6 + }, +/obj/item/toy/cards/deck/wizoff{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"jsN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jsO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"jsP" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jtc" = ( +/obj/structure/fence/door, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jtd" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"jtF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id = "SecJusticeVent"; + name = "Justice Vent" + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/execution/education) +"jtH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/confetti, +/obj/item/trash/tray, +/turf/open/misc/dirt/dark/station/airless, +/area/space/nearstation) +"jtJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"jtN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood/large, +/area/station/service/theater) +"jtR" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"jtW" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"juk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"jum" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/mess) +"juv" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"juB" = ( +/obj/machinery/computer/order_console/mining, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"juD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/vehicle/ridden/atv{ + dir = 8; + name = "Speedy" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/robotics/lab) +"juE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "gulagdoor"; + name = "Transfer Door Control"; + normaldoorcontrol = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/processing) +"juH" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"juI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"juN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/maintenance/port/central) +"juO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/syringe, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"juP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"juY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"jvd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"jvg" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"jvm" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/confetti, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jvv" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Engineering Deliveries" + }, +/obj/structure/sign/departments/engineering/directional/east{ + color = "#EFB341" + }, +/obj/structure/plasticflaps{ + name = "Engineering Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"jvA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/fluff/paper/stack, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"jvE" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/cable, +/obj/machinery/navbeacon{ + location = "F14-Science-Lobby"; + codes_txt = "patrol;next_patrol=F15-Science" + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"jvI" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jvM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/science, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"jvN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/games, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"jvO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"jvP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jvQ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile, +/mob/living/basic/butterfly, +/turf/open/floor/grass, +/area/station/command/corporate_suite) +"jvV" = ( +/obj/structure/table/glass, +/obj/item/storage/belt/medical{ + pixel_y = 6 + }, +/obj/item/storage/belt/medical{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"jvW" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"jvZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"jwc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/north, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"jwf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jwn" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"jwr" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central) +"jwy" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"jwB" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jwC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"jwN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"jwO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/orange, +/area/station/engineering/break_room) +"jwT" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"jwU" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/medical/pharmacy) +"jxa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"jxc" = ( +/obj/machinery/door/airlock/external{ + name = "Teleporter Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/command/teleporter) +"jxg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"jxh" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"jxi" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/mechbay) +"jxl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jxp" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"jxq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jxC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jxD" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jxE" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/item/kirbyplants/organic/plant1, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"jxG" = ( +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jxJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"jxM" = ( +/obj/machinery/teleport/station, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"jxQ" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"jxV" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/carpet/red, +/area/station/service/library) +"jxY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"jxZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"jya" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jyf" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid2" + }, +/area/space/nearstation) +"jyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"jyw" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"jyx" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jyJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jyK" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"jyN" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/command) +"jyY" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"jzd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/sign/poster/contraband/lamarr/directional/north, +/turf/open/floor/grass, +/area/station/cargo/breakroom) +"jzn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"jzs" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"jzu" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"jzv" = ( +/obj/structure/sign/warning/hot_temp/directional/east, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/obj/machinery/airlock_sensor/incinerator_ordmix{ + pixel_y = 25 + }, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"jzx" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"jzD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jzE" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/structure/sign/calendar/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"jzL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"jzP" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"jzQ" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, +/obj/machinery/bouldertech/refinery/smelter, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"jzZ" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jAa" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/aquarium/prefilled, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"jAb" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/service/library) +"jAc" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/lockers) +"jAd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"jAf" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"jAh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jAi" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"jAm" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay"); + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"jAq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"jAu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jAz" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/starboard/fore) +"jAA" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/north, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"jAD" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"jAG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"jAJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"jAM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"jAP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/marker_beacon/purple, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"jAQ" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"jAR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"jAS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/navbeacon{ + location = "P2-Port-Hallway"; + codes_txt = "patrol;next_patrol=P3-Service-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"jAY" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jAZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"jBa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jBk" = ( +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"jBl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/chair/plastic, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"jBm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/library) +"jBn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jBo" = ( +/obj/item/stack/package_wrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/stack/wrapping_paper{ + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_y = 5 + }, +/obj/item/dest_tagger{ + pixel_y = 2 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch/directional/south{ + pixel_x = 6; + pixel_y = -26 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"jBy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"jBz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"jBA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jBH" = ( +/obj/item/stack/medical/mesh{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/medicine, +/obj/item/wrench/medical, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"jBO" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Security Desk"; + req_access = list("security") + }, +/obj/machinery/door/window/left/directional/north{ + name = "Security Desk" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"jBQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jBT" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/commons/dorms) +"jBU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"jBX" = ( +/obj/structure/table/reinforced, +/obj/item/surgery_tray/full/morgue, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"jCb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"jCc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jCe" = ( +/obj/machinery/computer/mecha, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/ordnance/directional/east, +/obj/machinery/computer/security/telescreen/rd/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"jCi" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"jCo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"jCp" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"jCB" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"jCD" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"jCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"jCR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/lockers) +"jCS" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"jCV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"jCW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"jCX" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"jDe" = ( +/obj/structure/table/glass, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/watertank, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"jDg" = ( +/obj/structure/kitchenspike, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"jDi" = ( +/obj/structure/sign/departments/science/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"jDj" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/starboard) +"jDl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"jDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/fluff/broken_canister_frame, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"jDp" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"jDu" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"jDw" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"jDJ" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"jDK" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"jDN" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"jDO" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychology" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/station/medical/psychology) +"jEa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/right/directional/south{ + name = "Containment Pen #4"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"jEb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"jEd" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/water_source/puddle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/service/greenroom) +"jEi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"jEj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"jEl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"jEq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"jEw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"jEy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"jEC" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/spawner/random/food_or_drink/seed{ + spawn_all_loot = 1; + spawn_random_offset = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"jEF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jEG" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"jEP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"jEQ" = ( +/obj/structure/flora/rock/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jEY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/eva) +"jFf" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"jFs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/lower) +"jFt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"jFv" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/chair/plastic, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"jFy" = ( +/obj/machinery/door/poddoor{ + id = "armouryaccess"; + name = "Armoury Access" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"jFD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/morgue) +"jFE" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"jFG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/department/cargo) +"jFL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/start/warden, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"jFN" = ( +/obj/structure/chair/stool/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jFS" = ( +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/obj/structure/rack, +/obj/item/circuitboard/machine/fishing_portal_generator, +/obj/item/fishing_hook, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/sign/poster/official/corporate_perks_vacation/directional/north, +/turf/open/floor/iron/smooth_corner{ + dir = 8 + }, +/area/station/maintenance/port/aft) +"jGe" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"jGh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage) +"jGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"jGo" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"jGD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"jGH" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"jGK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/head/cone{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/clothing/head/cone{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"jGL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"jGQ" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"jGU" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"jGW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jHb" = ( +/obj/effect/turf_decal/tile/green, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/service/hydroponics/garden) +"jHj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/drone_bay) +"jHn" = ( +/obj/structure/flora/grass/jungle/b/style_2, +/obj/structure/flora/tree/jungle/style_5, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"jHo" = ( +/obj/vehicle/ridden/janicart{ + dir = 8 + }, +/obj/effect/turf_decal/bot/left, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/directional/west, +/obj/item/key/janitor, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"jHx" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"jHB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"jHI" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"jHP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jId" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"jIm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"jIo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"jIp" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jII" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/closet/crate/wooden/toy, +/obj/item/staff/broom, +/obj/item/toy/mecha/honk, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"jIJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"jIO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jIQ" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/iron/dark, +/area/station/security/detectives_office) +"jIV" = ( +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = -5 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"jIX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"jJm" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"jJn" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/white/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/service/kitchen) +"jJo" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"jJp" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/plumbing/sender, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"jJr" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jJw" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/steam_vent, +/obj/machinery/light/small/red/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jJH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"jJM" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass, +/area/station/commons/lounge) +"jJP" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"jJX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_machine, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"jKc" = ( +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/mirror/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"jKh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"jKj" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"jKm" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"jKq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"jKu" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"jKF" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"jKL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"jKN" = ( +/obj/machinery/teleport/station, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"jKS" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/food/cornchips/blue{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"jKW" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"jKZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"jLb" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"jLi" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/electric_shock/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"jLx" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Paramedic's Station" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/office) +"jLI" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + pixel_x = -6; + pixel_y = 0 + }, +/obj/effect/spawner/random/entertainment/drugs, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"jLJ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/teal, +/turf/open/floor/grass, +/area/station/service/library/lounge) +"jLP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"jLQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/plasma, +/obj/item/chair/stool/bar, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"jLR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/item/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/aft/lesser) +"jLW" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/rack, +/obj/item/storage/test_tube_rack, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"jLY" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/obj/structure/sign/poster/abductor/ayy_piping/directional/east, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"jMb" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"jMd" = ( +/obj/structure/railing, +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured, +/area/station/service/theater) +"jMm" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"jMq" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/scalpel, +/obj/item/hemostat, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"jMr" = ( +/turf/closed/wall, +/area/station/security/prison/mess) +"jMt" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"jMu" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Experimentor Lab Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jMx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger, +/obj/item/assembly/flash/handheld{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/button/photobooth{ + pixel_x = 26 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"jME" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"jMG" = ( +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/lavendergrass/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/rock/pile/icy, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"jMS" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/break_room) +"jMU" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"jMX" = ( +/obj/structure/flora/rock/pile/icy/style_2, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"jNd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 17; + pixel_x = -7 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/machinery/newscaster/directional/north, +/obj/item/cigarette/pipe{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"jNh" = ( +/obj/machinery/computer/shuttle/mining{ + req_access = null + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/requests_console/directional/north{ + name = "Mining Requests Console"; + department = "Mining" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"jNn" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/structure/ladder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"jNr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"jNu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"jNH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"jNN" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"jNP" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"jNR" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/interrogation) +"jNU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"jNY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"jNZ" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"jOc" = ( +/obj/structure/table/optable, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"jOj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"jOv" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) +"jOz" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jOF" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"jOI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/service/kitchen) +"jOJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"jOL" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/item/weldingtool/mini/empty{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"jOQ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/chair/sofa/bench/solo, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"jOS" = ( +/obj/docking_port/stationary/random{ + name = "lavaland"; + shuttle_id = "pod_2_lavaland" + }, +/turf/open/space, +/area/space) +"jPa" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"jPq" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/service/chapel) +"jPw" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"jPz" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"jPD" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/structure/crate, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"jPI" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"jPK" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jPV" = ( +/obj/effect/turf_decal/siding/dark_green, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"jQc" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/mining_weather_monitor/directional/north, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"jQf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"jQi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"jQm" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"jQo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"jQq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"jQw" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/ethanol{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/carbon{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/chlorine{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/light/cold/dim/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"jQx" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/blood/old, +/obj/item/flashlight/lantern{ + start_on = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"jQz" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"jQA" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/central) +"jQB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"jQD" = ( +/obj/effect/turf_decal/trimline/brown/filled/end, +/obj/machinery/vending/custom, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"jQE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/lockers) +"jQI" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"jQK" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"jQM" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/grass, +/area/station/science/lower) +"jQN" = ( +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"jQQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"jQT" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/tree/jungle/small/style_5, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/commons/lounge) +"jQZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Mini-Bar Access" + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"jRc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"jRm" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 6 + }, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"jRp" = ( +/obj/structure/flora/bush/lavendergrass/style_2, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"jRq" = ( +/obj/structure/cable/multilayer/connected, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"jRr" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"jRA" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"jRD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Funeral Parlour" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"jRI" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"jSc" = ( +/obj/machinery/teleport/hub, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"jSf" = ( +/obj/machinery/icecream_vat, +/obj/item/radio/intercom/directional/north, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"jSo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jSu" = ( +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"jSv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"jSH" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig) +"jSI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/corner, +/area/station/service/kitchen) +"jSO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"jSP" = ( +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot/beepsky/officer, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"jSZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"jTb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"jTc" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jTe" = ( +/obj/effect/turf_decal/siding/brown, +/obj/item/kirbyplants/random, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/breakroom) +"jTi" = ( +/obj/structure/hedge, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory) +"jTn" = ( +/obj/effect/spawner/random/trash/graffiti{ + random_icon = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"jTp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"jTu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jTJ" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"jTU" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"jUb" = ( +/obj/machinery/atmospherics/pipe/color_adapter{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"jUg" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"jUn" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"jUo" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"jUs" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/machinery/button/elevator/directional/north{ + id = "SecElevator" + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -1; + pixel_y = 31; + linked_elevator_id = "SecElevator" + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/brig) +"jUv" = ( +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"jUz" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"jUB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"jUJ" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"jUM" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"jUR" = ( +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/command) +"jUU" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/structure/sign/gym/right{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"jUV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/security/court, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"jUX" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/round_default_module, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"jUZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"jVb" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"jVg" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/machinery/light/no_nightlight/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white, +/area/station/science/research) +"jVj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"jVm" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/service/chapel/funeral) +"jVn" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/fore) +"jVr" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/port) +"jVw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"jVx" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Test Subject Cell" + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"jVA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/wrapping, +/obj/item/trash/fleet_ration, +/turf/open/misc/dirt/dark/station/airless, +/area/space/nearstation) +"jVC" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/port) +"jVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/hedge, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"jVJ" = ( +/obj/machinery/door/airlock{ + name = "Cleaning Closet" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"jVU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"jVW" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = 14; + pixel_y = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) +"jVY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jWg" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/smartfridge/petri/preloaded, +/obj/effect/turf_decal/siding/purple, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"jWh" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Research Director's Office"; + name = "Research Director's Fax Machine" + }, +/obj/item/folder/blue, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"jWj" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"jWn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "queue_hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/teleporter) +"jWv" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"jWy" = ( +/obj/machinery/door/airlock/security{ + name = "Courtroom Archives" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"jWz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"jWE" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"jWF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"jWO" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"jWT" = ( +/obj/structure/sign/poster/contraband/wildcat/directional/east, +/obj/structure/hedge, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"jXc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"jXd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"jXf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/noticeboard/hop{ + pixel_y = 36 + }, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"jXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/bridge) +"jXs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jXA" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"jXB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"jXC" = ( +/obj/machinery/door/airlock/command{ + name = "Quartermaster's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/qm) +"jXE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jXL" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/trimline/white, +/obj/item/clothing/gloves/color/white, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"jYb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"jYc" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"jYe" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"jYk" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"jYm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"jYo" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"jYq" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/hedge, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/fore) +"jYw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"jYB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"jYJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/library/upper) +"jYP" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"jYS" = ( +/obj/structure/railing/corner{ + dir = 8; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"jYT" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/folder/yellow{ + pixel_y = 2 + }, +/obj/item/paper, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Cargo Desk"; + req_access = list("shipping") + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"jYY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"jYZ" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/siding/purple, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"jZc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/plating, +/area/station/science/ordnance) +"jZe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"jZr" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Research Test Chamber"; + req_access = list("science") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"jZz" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jZK" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"jZL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/execution/education) +"jZM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jZW" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/science) +"jZY" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"kae" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"kaf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"kah" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/research) +"kai" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/structure/cable, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"kam" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/shower) +"kan" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kau" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kaw" = ( +/obj/structure/chair/comfy, +/obj/structure/mirror/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"kay" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"kaB" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"kaD" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"kaG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"kaM" = ( +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kaO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"kaR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"kaS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kaT" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"kaV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"kbj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"kbm" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"kbs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot_white, +/obj/structure/chair, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"kbw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kbz" = ( +/turf/open/floor/glass/reinforced, +/area/station/commons/storage/primary) +"kbE" = ( +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/curtain, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/end, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/left/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/security/breakroom) +"kbF" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"kbM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kbN" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/microscope, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"kbV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"kbX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"kbZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"kce" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid8" + }, +/area/space/nearstation) +"kcg" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/security/prison) +"kck" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos) +"kcn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"kcr" = ( +/obj/structure/filingcabinet/employment, +/obj/item/toy/figure/lawyer{ + pixel_y = -21; + pixel_x = -4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"kct" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"kcz" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumchapel"; + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/funeral) +"kcA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/rec) +"kcG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kcL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/central) +"kcW" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/machinery/door/window/right/directional/south{ + name = "Secure Art Exhibition"; + req_access = list("library") + }, +/obj/effect/spawner/random/decoration/paint, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"kcY" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"kdb" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/folder/yellow, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/pen, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"kdm" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/machinery/door/window/left/directional/south{ + name = "Medical Deliveries"; + req_access = list("medical") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"kdn" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"kdr" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"kdD" = ( +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/flora/rock/icy/style_2, +/obj/structure/flora/bush/snow/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/command/heads_quarters/rd) +"kdF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kdJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"kdL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kdQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cytology Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kdR" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/security/prison/workout) +"kdV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"keb" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kec" = ( +/obj/structure/fermenting_barrel, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"ked" = ( +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"kef" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"kem" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/west{ + name = "Genetics Desk"; + req_access = list("genetics") + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rdgene2"; + name = "Secondary Genetics Lab Shutters" + }, +/turf/open/floor/iron/dark/small, +/area/station/science/genetics) +"ken" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"keA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/service/minibar) +"keB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/green/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"keD" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"keE" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"keO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"keP" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/effect/turf_decal/siding/dark, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/structure/sign/map/right{ + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/item/cigarette/cigar{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"keU" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/engineering/atmos) +"kfd" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"kff" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/fermenting_barrel, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/item/trash/champagne_cork/sabrage{ + pixel_y = -5; + pixel_x = 16 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"kfh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"kfq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"kfr" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Captain's Office"; + name = "Captain's Fax Machine" + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"kfu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"kfv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"kfz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/stairs/left{ + dir = 8; + color = "#3d3e42" + }, +/area/station/engineering/engine_smes) +"kfA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"kfK" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/disposal) +"kfU" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"kfV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"kga" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"kgb" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/sign/warning/cold_temp/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8; + initialize_directions = 4; + name = "euthanization chamber freezer" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kgj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kgm" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kgo" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"kgr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"kgv" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kgz" = ( +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"kgO" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/reagent_containers/pill/lsd{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/item/reagent_containers/cup/mortar{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/brimdust{ + plane = -7; + pixel_y = -7 + }, +/obj/item/implantcase/chem{ + pixel_y = -11; + pixel_x = -1 + }, +/obj/item/reagent_containers/cup/blastoff_ampoule{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/pill/lsd{ + pixel_x = -8 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_y = -1 + }, +/obj/structure/sign/poster/official/plasma_effects/directional/north, +/turf/open/floor/iron/smooth, +/area/station/maintenance/department/bridge) +"kgS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"kgU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Holodeck Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kgX" = ( +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 0 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"khh" = ( +/obj/structure/sign/clock/directional/north, +/obj/structure/bookcase/random, +/turf/open/floor/wood/large, +/area/station/service/library) +"khr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library) +"khs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"khu" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"khw" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/landmark/start/coroner, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"khy" = ( +/obj/machinery/recycler{ + dir = 4 + }, +/obj/machinery/conveyor{ + id = "garbage"; + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"khz" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/break_room) +"khC" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/storage/bag/trash, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/disposal) +"khG" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"khI" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/effect/landmark/navigate_destination/chemfactory, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"khK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/commons/dorms) +"khL" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"khN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood/fancy/red, +/obj/item/paint_palette, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"khQ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"khR" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"khZ" = ( +/obj/structure/table/glass, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"kia" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"kig" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"kij" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/port/central) +"kik" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/navbeacon{ + location = "P7-Service-Hallway"; + codes_txt = "patrol;next_patrol=P8-Service-Hallway" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kim" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/vending/coffee, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"kit" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"kiz" = ( +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"kiC" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/miningoffice) +"kiG" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/vacant_room/office) +"kiJ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/security/checkpoint/customs) +"kiT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/break_room) +"kiU" = ( +/obj/item/wrench, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kiX" = ( +/turf/closed/wall, +/area/station/service/hydroponics) +"kiY" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/effect/landmark/navigate_destination/hop, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) +"kjb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"kjd" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"kjg" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"kji" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"kjm" = ( +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"kjn" = ( +/obj/structure/reagent_dispensers/wall/peppertank/directional/south, +/obj/machinery/photobooth/security, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"kjp" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/trimline/dark_green/line, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"kjq" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/break_room) +"kjt" = ( +/obj/structure/hedge, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"kjA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kjF" = ( +/turf/open/floor/iron/stairs{ + color = "#5d341f" + }, +/area/station/service/library/upper) +"kjQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"kjR" = ( +/obj/machinery/vending/assist, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"kjS" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"kjT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"kke" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/port) +"kkf" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/target, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"kki" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/digital_clock/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"kkn" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"kkq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kku" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/hallway/secondary/command) +"kkQ" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"kkR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"kkV" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/utility/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"kkW" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"kkX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"kkZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/lobby) +"kla" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"kle" = ( +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lobby) +"klh" = ( +/obj/structure/aquarium/prefilled, +/obj/structure/railing{ + color = "#4874A2" + }, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"kli" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/toy/figure/prisoner{ + pixel_x = -10; + pixel_y = -14 + }, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"klm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/solars/port/aft) +"klq" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/glass/reinforced, +/area/station/engineering/engine_smes) +"klt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"klu" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 8; + name = "Waste Release" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"klC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"klD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"klT" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Hypertorus Fusion Reactor" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/hfr_room) +"klU" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"klY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"kma" = ( +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kme" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/main) +"kmf" = ( +/obj/structure/hedge, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"kmm" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"kmn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"kmo" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"kmu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kmv" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/hedge/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port) +"kmx" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"kmD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/obj/machinery/scanner_gate/preset_guns, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"kmF" = ( +/obj/structure/table/wood, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/folder/blue, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"kmP" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"kmQ" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/thunderdrome/directional/north, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"kmU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kmV" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/red/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"kmZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/aquarium/prefilled, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"kna" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"knc" = ( +/obj/machinery/stasis, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"knd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"kni" = ( +/obj/structure/table/glass, +/obj/item/disk/holodisk{ + pixel_y = 4 + }, +/obj/item/disk/holodisk{ + pixel_x = 5 + }, +/obj/item/disk/holodisk{ + pixel_x = -3 + }, +/obj/machinery/button/door/directional/north{ + id = "conference_blast"; + name = "Conference Room Shutters"; + pixel_x = 4; + pixel_y = -26; + req_access = list("command") + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -6 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"knt" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"knv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery/theatre) +"knw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"knB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"knC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"knF" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/grass, +/area/station/maintenance/fore/greater) +"knG" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/jungle/b/style_2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/grass, +/area/station/medical/virology) +"knH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Wine Storage" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"knJ" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility{ + pixel_y = 4 + }, +/obj/item/storage/belt/utility, +/obj/structure/sign/poster/contraband/energy_swords/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"knL" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"knQ" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"knY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"koa" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/toy/snowball, +/obj/item/clothing/glasses/cold, +/obj/item/wrench/medical, +/obj/item/food/popsicle/creamsicle_berry, +/obj/item/tank/internals/anesthetic, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"koc" = ( +/obj/effect/turf_decal/siding/wideplating_new/light/corner, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/structure/railing/corner, +/obj/item/kirbyplants/organic/plant4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"kod" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"koi" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"koj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"kon" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"kop" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"koq" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P9-Service-Hallway"; + codes_txt = "patrol;next_patrol=P10-Diner" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kor" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/port) +"kov" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock" + }, +/obj/machinery/door_buttons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access = list("virology") + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"koC" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"koD" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/fore) +"koF" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"koI" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/security/brig/lower) +"koP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -2; + pixel_x = -2 + }, +/obj/item/tank/internals/anesthetic, +/obj/item/healthanalyzer, +/obj/item/clothing/mask/surgical, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"koS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/holding_cell) +"koT" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"koW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/arrow_ccw{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"kpj" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"kpm" = ( +/obj/structure/sign/departments/aiupload/directional/north, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + dir = 9; + network = list("aiupload") + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"kpo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kpp" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/customs) +"kpu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"kpA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kpC" = ( +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"kpE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/commons/fitness) +"kpH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"kpN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"kpP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"kpS" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kpW" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"kpY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"kqb" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"kqh" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"kqi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"kqm" = ( +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","engine") + }, +/obj/machinery/light/dim/directional/west, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"kqn" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"kqo" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"kqp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"kqq" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/clothing/gloves/latex{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/tram/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/tram/mid_joiner{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/official/safety_report/directional/north, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"kqw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitory Maintenance" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"kqy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/prison) +"kqz" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"kqL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"kqP" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 2 + }, +/obj/machinery/ntnet_relay, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kqR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"kqV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"kqZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light_switch/directional/east{ + pixel_x = 36 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/button/door/directional/east{ + name = "Bar Counter Shutters Control"; + id = "bar_counter"; + req_access = list("bar") + }, +/obj/machinery/coffeemaker/impressa{ + pixel_x = 2 + }, +/obj/item/storage/box/coffeepack, +/obj/item/storage/box/coffeepack/robusta, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"kra" = ( +/turf/closed/indestructible/grille, +/area/station/maintenance/port/aft) +"krg" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"krm" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"krn" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"krq" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig) +"krr" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"krt" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/service/library) +"krC" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"krF" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access = list("ordnance") + }, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"krG" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"krJ" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Cafe Access" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"krK" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"krM" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"krN" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/lights/mixed, +/obj/item/lightreplacer, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"krO" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"krS" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"krX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"ksa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ksd" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/circuit, +/area/station/command/gateway) +"kse" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/mess) +"ksn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ksp" = ( +/obj/item/toy/plush/beeplushie{ + name = "Kit-Kat Jr."; + desc = "A lost relic of one grumpy felinid." + }, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5; + pixel_x = -3 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ksH" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"ksJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ksO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ksP" = ( +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ksS" = ( +/obj/machinery/photocopier, +/obj/structure/sign/flag/ssc/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"ksT" = ( +/obj/structure/chair/sofa/corp, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"ksW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/bush/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ktk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/central) +"ktl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kts" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/lobby) +"ktw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ktC" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"ktF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ktH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/preopen, +/obj/effect/spawner/random/techstorage/data_disk, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"ktI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/machinery/light_switch/directional/south, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"ktJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"ktW" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname/directional/north, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"ktX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/service/kitchen) +"ktY" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"ktZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kud" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/billboard/nanotrasen{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/station/maintenance/central) +"kue" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/hedge, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"kuj" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/korta_nectar{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/liqueur{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_containers/cup/bottle/syrup_bottle/caramel{ + pixel_x = 15; + pixel_y = 16 + }, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"kup" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kuq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/hangover, +/obj/machinery/computer/security/telescreen/bar/directional/east{ + name = "Laser Tag Monitor" + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"kur" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"kuu" = ( +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/radshelter/civil) +"kuv" = ( +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kux" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kuC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"kuD" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kuF" = ( +/turf/closed/wall, +/area/station/service/theater_dressing) +"kuO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"kuP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"kuT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "F7-Medbay"; + codes_txt = "patrol;next_patrol=F8-Fore-Hallway" + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"kuU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/fax{ + fax_name = "Security Office"; + name = "Security Office Fax Machine" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark, +/area/station/security/office) +"kuX" = ( +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kvc" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"kvd" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool, +/obj/item/clothing/head/utility/welding, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"kvg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shower/directional/west, +/obj/structure/cable, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"kvl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/analyzer, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kvx" = ( +/obj/machinery/door/airlock{ + name = "Law Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/lawyer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/lawoffice) +"kvB" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/ids{ + pixel_y = 6 + }, +/obj/item/taperecorder{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kvC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"kvD" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 10 + }, +/obj/structure/sink/kitchen/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/service/kitchen) +"kvF" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/gloves{ + pixel_y = 8 + }, +/obj/item/storage/box/masks{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"kvJ" = ( +/turf/closed/indestructible/riveted{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + name = "hyper-reinforced wall" + }, +/area/station/science/ordnance/bomb) +"kvX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/clothing/head/cowboy/brown, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"kwb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/command) +"kwd" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/generic/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/service/barber) +"kwm" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/digital_clock/directional/west, +/obj/effect/spawner/random/bureaucracy/briefcase, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"kwp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/status_display/evac/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"kwv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"kwG" = ( +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/large/style_3, +/obj/machinery/light/floor, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/security/prison) +"kwN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"kwR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"kwT" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"kwW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/locker) +"kwY" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"kwZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/clock/directional/east, +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"kxc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/north, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"kxk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"kxl" = ( +/obj/machinery/computer/mecha, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"kxn" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat_interior) +"kxp" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/fore) +"kxq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"kxt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"kxu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"kxw" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tech) +"kxz" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/sign/clock/directional/east, +/obj/item/newspaper, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"kxF" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/breakroom) +"kxH" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"kxQ" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/structure/sign/directions/vault/directional/south{ + pixel_y = -24; + dir = 9 + }, +/obj/structure/sign/directions/command/directional/south{ + dir = 9 + }, +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -40; + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"kxV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"kyc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/project) +"kye" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kyi" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kyk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"kym" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"kyo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lower) +"kyp" = ( +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/glass/reinforced, +/area/station/engineering/supermatter/room/upper) +"kyq" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"kyr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Break Room" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/breakroom) +"kyu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"kyy" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/commons/dorms) +"kyA" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"kyB" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"kyF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"kyX" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/range) +"kzb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"kzf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"kzh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"kzn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"kzw" = ( +/obj/structure/bed/dogbed/renault, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/mob/living/basic/pet/fox/renault, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"kzD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"kzF" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"kzJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"kzM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/east{ + network = list("minisat") + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/blue, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"kzQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/medical/virology) +"kzV" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kAd" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kAi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"kAk" = ( +/obj/structure/table/wood/fancy, +/obj/item/bouquet/rose, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/funeral) +"kAw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"kAF" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"kAG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"kAO" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"kAP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant18, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"kAT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"kAV" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/balaclava, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"kAY" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"kBe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/drinkingglass, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"kBf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"kBg" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kBj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/reagent_containers/cup/glass/mug/tea, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"kBl" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"kBp" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"kBv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"kBw" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"kBA" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/dim/directional/west, +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"kBH" = ( +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/command) +"kBI" = ( +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/item/food/grown/harebell, +/obj/structure/table/wood/fancy, +/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ + pixel_y = 30 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"kBR" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"kBS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kBT" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kBW" = ( +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/iron/stairs{ + color = "#5d341f" + }, +/area/station/maintenance/port/aft) +"kBX" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"kCd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"kCh" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kCi" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/red, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"kCl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"kCn" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/suture, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"kCp" = ( +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/station/science/server) +"kCq" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"kCs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/newspaper, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kCt" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kCv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/department/security) +"kCw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"kCx" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/engineering/supermatter/room/upper) +"kCF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table_frame/wood, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"kCI" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kCL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"kCO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"kCR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"kCZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/aquarium/prefilled, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"kDb" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kDf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"kDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"kDh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"kDi" = ( +/obj/item/pickaxe, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"kDl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"kDy" = ( +/obj/structure/fireplace{ + pixel_x = -32 + }, +/obj/structure/chair/comfy/beige{ + dir = 1; + name = "Bench" + }, +/obj/item/kirbyplants/organic/plant12{ + pixel_x = 11; + pixel_y = 22 + }, +/obj/structure/railing{ + dir = 1; + pixel_x = -16; + pixel_y = -7 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet, +/area/station/cargo/mining_breakroom) +"kDB" = ( +/obj/structure/lattice, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"kDI" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/service/kitchen) +"kDL" = ( +/obj/item/ammo_casing{ + pixel_x = 5; + dir = 9 + }, +/obj/item/ammo_casing{ + pixel_x = -14; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/food/egg_smudge{ + pixel_x = -16; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/food/tomato_smudge{ + pixel_x = 15; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"kDN" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"kDP" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat"; + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"kDS" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"kDW" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_y = -5; + req_access = list("xenobiology"); + pixel_x = -25 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Biohazard Containment Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/xenobiology/hallway) +"kDY" = ( +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness/recreation) +"kEf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"kEg" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"kEi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"kEj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/hedge, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"kEn" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/surgery/theatre) +"kEs" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/command/heads_quarters/cmo) +"kEt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"kEA" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kEB" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"kED" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/arrow_cw, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kEE" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/science) +"kEF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"kEI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/north, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"kEN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"kEP" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"kES" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/core, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"kEU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"kEV" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/railing/corner{ + dir = 8; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"kEW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"kEX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kEY" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/flora/grass/green/style_random, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"kFc" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/obj/item/flashlight/glowstick/red, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"kFe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Archive Room" + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/bridge) +"kFi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"kFj" = ( +/turf/closed/wall, +/area/station/cargo/lower) +"kFm" = ( +/obj/machinery/mechpad, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"kFn" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"kFx" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"kFF" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"kFG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"kFI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/hfr_room) +"kFR" = ( +/obj/item/wirecutters, +/obj/item/wrench, +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"kFU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"kFZ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/geiger_counter, +/obj/item/clothing/glasses/meson, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"kGd" = ( +/obj/structure/closet/body_bag, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/department/cargo) +"kGg" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/commons/dorms) +"kGh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"kGk" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"kGn" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"kGv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"kGK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"kGO" = ( +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kGR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"kGV" = ( +/turf/closed/wall, +/area/station/security/prison/safe) +"kGW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"kHa" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/science) +"kHb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "medsecprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -2; + req_access = list("security") + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"kHc" = ( +/turf/closed/wall, +/area/station/hallway/primary/port) +"kHn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stack/rods/ten, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kHq" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"kHt" = ( +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"kHA" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"kHD" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"kHK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"kHL" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kHR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kIb" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"kIc" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/effect/decal/cleanable/glass, +/obj/item/trash/champagne_cork/sabrage, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kIf" = ( +/turf/open/water/beach, +/area/station/commons/fitness/recreation/pool) +"kIg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos) +"kIl" = ( +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"kIo" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"kIv" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"kIy" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/item/food/grown/banana, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/science/genetics) +"kIA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname/motion/directional/east{ + network = list("minisat") + }, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"kII" = ( +/obj/machinery/research/anomaly_refinery, +/obj/effect/turf_decal/siding/purple, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"kIL" = ( +/obj/item/chair/plastic, +/obj/structure/marker_beacon/bronze, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"kIS" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"kIT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"kIV" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/security/laptop{ + dir = 8; + pixel_y = 3; + pixel_x = -2 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"kJa" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"kJc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"kJe" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"kJk" = ( +/obj/structure/cable, +/obj/machinery/power/smes/full, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kJl" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/entry) +"kJw" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"kJC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/turf/open/floor/plating, +/area/station/command/bridge) +"kJF" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kJG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kJH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"kJO" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"kJQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kJW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"kJX" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/mob/living/basic/mouse/brown{ + dir = 4; + name = "Jerry" + }, +/turf/open/floor/iron/white/small, +/area/station/medical/patients_rooms) +"kKb" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"kKe" = ( +/obj/structure/chair/sofa/bamboo/right{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"kKi" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"kKl" = ( +/obj/structure/aquarium/prefilled, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"kKm" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"kKq" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/science) +"kKz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"kKC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"kKR" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 12; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/command/corporate_suite) +"kLa" = ( +/turf/closed/wall, +/area/station/maintenance/department/cargo) +"kLh" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"kLj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/maintenance/department/medical) +"kLs" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/aisat/exterior) +"kLw" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"kLz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"kLD" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kLF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"kLH" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kLK" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kLL" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/circuits) +"kLN" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/trimline/purple/end{ + dir = 8 + }, +/obj/structure/sink/directional/south, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"kLP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"kMe" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"kMi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"kMn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/closet/crate/bin, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kMo" = ( +/obj/effect/spawner/random/structure/table_fancy, +/obj/effect/spawner/random/decoration/statue, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"kMz" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"kMD" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"kME" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"kMF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"kMH" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/chair/sofa/bench/right, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"kMM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"kMN" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Reception Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kMO" = ( +/obj/structure/cable, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/prison) +"kMZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"kNa" = ( +/obj/machinery/computer/atmos_control/plasma_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kNd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"kNp" = ( +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/station/science/ordnance/bomb) +"kNt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"kNu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"kNG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"kNV" = ( +/obj/structure/sign/departments/restroom/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"kOb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/prison) +"kOc" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/engineering/break_room) +"kOh" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/railing, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"kOj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"kOk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kOl" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kOo" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"kOp" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kOx" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/airalarm/directional/north, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"kOH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"kOI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"kON" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"kOW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"kOX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"kOZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"kPb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"kPn" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kPx" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"kPz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"kPB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"kPD" = ( +/obj/structure/statue/snow/snowman, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"kPG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kPV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"kPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/marker_beacon, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kPY" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"kQa" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/broken_flooring/side/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kQe" = ( +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"kQf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"kQj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/flasher/directional/east{ + id = "hopflash"; + pixel_x = 24 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"kQp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"kQs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"kQJ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"kQK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kQL" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/storage) +"kQN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"kQP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"kQZ" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"kRb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/range) +"kRc" = ( +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/spawner/random/contraband/prison, +/obj/structure/closet/boxinggloves, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_large, +/area/station/security/prison/workout) +"kRd" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"kRe" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/aft) +"kRf" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"kRg" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/entertainment/lighter, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/aft/lesser) +"kRj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"kRr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"kRt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kRB" = ( +/obj/machinery/mass_driver/trash, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"kRF" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"kRH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/solars/port/aft) +"kRJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"kRL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/break_room) +"kRR" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Head of Personnel's Office"; + name = "Head of Personnel's Fax Machine" + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"kSl" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"kSw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"kSy" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"kSE" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"kSG" = ( +/obj/effect/spawner/random/structure/table_fancy, +/obj/item/phone, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"kSJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/theater) +"kSO" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/dim/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kSP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"kSU" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"kSX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"kTa" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kTb" = ( +/turf/open/floor/glass/reinforced, +/area/station/cargo/breakroom) +"kTf" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"kTi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 4 + }, +/obj/item/reagent_containers/cup/bucket/wooden, +/obj/structure/sign/poster/contraband/free_tonto/directional/south, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"kTz" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/port) +"kTC" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kTD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"kTG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/command/teleporter) +"kTH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"kTI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"kTT" = ( +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/stripes/red/end{ + dir = 4 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/lobby) +"kTX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/vending/cytopro, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"kUd" = ( +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/structure/table/reinforced/titaniumglass, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room/upper) +"kUl" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/medkit/emergency{ + pixel_y = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"kUm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"kUn" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"kUG" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"kVd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"kVg" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/computer/security/telescreen/cmo/directional/west, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"kVi" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/library) +"kVl" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/cargo/mining_breakroom) +"kVn" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"kVo" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = 15 + }, +/obj/item/clipboard, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"kVy" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/meter, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"kVz" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/mechbay) +"kVE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"kVG" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/project) +"kVJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "bar_counter"; + name = "Bar Counter Shutters" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"kVT" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"kVV" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"kVY" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"kWd" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/service/greenroom) +"kWg" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"kWn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"kWs" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/prison) +"kWF" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/cargo/lower) +"kWH" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"kWO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/displaycase/captain, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"kWS" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"kWU" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"kWY" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"kWZ" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"kXm" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron, +/area/station/maintenance/port/aft) +"kXC" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/sorting) +"kXE" = ( +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"kXL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"kXS" = ( +/turf/open/floor/glass/reinforced/plasma, +/area/station/engineering/supermatter/room/upper) +"kXW" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"kYa" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"kYv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/door/airlock/security{ + name = "Customs Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"kYB" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_corner{ + dir = 8 + }, +/area/station/security/prison/workout) +"kYC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"kYH" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/cas, +/obj/item/toy/cards/deck/cas/black{ + pixel_y = 11 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"kYI" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"kYJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"kYR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"kYS" = ( +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"kYW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"kZa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"kZe" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/food/grown/banana, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"kZf" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/jungle/a, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"kZj" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"kZq" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"kZy" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"kZA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"kZD" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"kZG" = ( +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"kZM" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"kZT" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"kZU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"laa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"lam" = ( +/turf/closed/wall/r_wall, +/area/station/medical/lower) +"lap" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lar" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"lat" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) +"laB" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"laG" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/station/science/lower) +"laM" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"laN" = ( +/turf/open/floor/iron/stairs/left, +/area/station/command/gateway) +"laR" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"lbg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/warden) +"lbk" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"lbm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/cargo/office) +"lbp" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"lbt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + dir = 8; + pixel_y = 6 + }, +/obj/item/toy/figure/curator{ + pixel_y = 21; + pixel_x = 2 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"lbw" = ( +/obj/structure/chair/stool/directional/east, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness) +"lbz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"lbA" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"lbM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"lbN" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"lcb" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"lch" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"lci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"lcj" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lcm" = ( +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "QM #3" + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"lcq" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/sign/poster/official/help_others/directional/north, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/iron/white/herringbone, +/area/station/command/heads_quarters/cmo) +"lcs" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"lcF" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"lcT" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"ldg" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"ldl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"ldo" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ldu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"ldH" = ( +/turf/open/floor/iron/stairs/left{ + color = "#5d341f"; + dir = 1 + }, +/area/station/cargo/mining_breakroom) +"ldL" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"ldS" = ( +/obj/effect/turf_decal/trimline/white/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"ldU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ldY" = ( +/obj/structure/sign/clock/directional/south, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"lea" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"lee" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"lel" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"leq" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = -3 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"ler" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"lez" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"leB" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/service/chapel/funeral) +"leK" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/navbeacon{ + location = "C2-Starboard-Central-B"; + codes_txt = "patrol;next_patrol=C3-Aft-Central-Fw" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"leM" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/reagent_containers/condiment/pack/sugar{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"leO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"leP" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"lfb" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"lfe" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"lff" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/photocopier, +/turf/open/floor/iron/dark, +/area/station/command) +"lfg" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"lfl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/security) +"lfo" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"lfs" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - N2O" + }, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"lft" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/green, +/area/station/commons/dorms) +"lfw" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"lfy" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"lfz" = ( +/obj/structure/hedge, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/machinery/light/small/directional/south, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"lfD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"lfE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lfG" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lfL" = ( +/obj/machinery/digital_clock/directional/south, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"lfV" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"lfZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/filingcabinet, +/obj/machinery/button/door/directional/south{ + name = "Privacy Shutters Control"; + id = "cargosecprivacy"; + req_access = list("security") + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"lge" = ( +/obj/structure/chair/wood/wings, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"lgk" = ( +/obj/structure/hedge, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"lgn" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"lgw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"lgA" = ( +/turf/closed/wall/r_wall, +/area/station/science/cytology) +"lgQ" = ( +/turf/open/floor/carpet/donk, +/area/station/cargo/miningoffice) +"lgT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/security/breakroom) +"lhb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"lhc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + pixel_x = 6; + id = "laserblue"; + name = "Blue Team Shutters"; + pixel_y = -3 + }, +/obj/machinery/button/door{ + pixel_x = -6; + id = "laserred"; + name = "Red Team Shutters"; + pixel_y = -3 + }, +/obj/item/radio/intercom/directional{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"lhh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"lhn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/modular_computer/preset/cargochat/security{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/office) +"lho" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"lhq" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"lhu" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"lhx" = ( +/obj/docking_port/stationary{ + dir = 8; + height = 18; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/nebula; + shuttle_id = "arrival_stationary"; + width = 7; + dwidth = 3 + }, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"lhA" = ( +/obj/structure/hedge, +/obj/machinery/newscaster/directional/north, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"lhE" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"lhK" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"lhL" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"lhT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"lhV" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lib" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Auxiliry Dock Maintainence" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"lid" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"lif" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/workout) +"lig" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_cw, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"lih" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"lii" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"lit" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/warning/no_smoking/circle/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"liw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"lix" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/water, +/area/station/ai_monitored/aisat/exterior) +"liG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "pharmacy_shutters"; + name = "Pharmacy Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/pharmacy) +"liP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos) +"liQ" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/obj/structure/secure_safe/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"liZ" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/research) +"ljc" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/white, +/area/station/science/lower) +"lje" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ljg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"ljh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/mapping_helpers/apc/cell_10k, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"lji" = ( +/obj/machinery/rnd/server/master, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"ljk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"ljl" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/light/directional/south, +/obj/machinery/vending/medical, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ljt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"lju" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"ljz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"ljE" = ( +/obj/machinery/digital_clock/directional/east, +/obj/structure/stairs/east{ + color = "#3d3e42" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"ljK" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/item/clothing/gloves/latex{ + pixel_y = -3 + }, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"ljL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"ljN" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"ljO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/tank_holder, +/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"lkc" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"lkk" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/machinery/light/floor, +/obj/structure/flora/bush/jungle/c/style_random, +/turf/open/floor/grass, +/area/station/medical/lower) +"lkm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"lkp" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/trimline/yellow/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"lkr" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lkt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port) +"lku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"lkD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/suit/caution{ + pixel_y = 17; + pixel_x = 7 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"lkE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"lkH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"lkL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison) +"lkM" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"lkN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"lkQ" = ( +/obj/structure/sign/warning/secure_area/directional/south, +/obj/effect/decal/cleanable/vomit/nebula, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"lkU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"lkZ" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"llj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"lll" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/sign/poster/official/midtown_slice/directional/north, +/obj/machinery/vending/coffee, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"llo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = -6; + pixel_x = -16 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/secondary/service) +"lls" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 1; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_y = 9; + pixel_x = -3 + }, +/obj/machinery/door/window/right/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"llu" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"llB" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"llE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/donk, +/area/station/cargo/breakroom) +"llF" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"llK" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"llM" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/engineering/engine_smes) +"llQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/medkit/regular{ + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/computer/security/telescreen/cmo/directional/north, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lmf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/south, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"lmh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) +"lmu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"lmv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lmE" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"lmF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"lmI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"lmN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lmO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lmR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + req_access = list("hos"); + pixel_y = -6 + }, +/obj/machinery/light/directional/east, +/obj/machinery/keycard_auth/wall_mounted/directional/east{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"lmS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Civil Rad Shelter" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"lmY" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "engcell"; + name = "Engineering Cell Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"lna" = ( +/turf/closed/wall, +/area/station/security/prison/shower) +"lng" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/plating, +/area/station/maintenance/port) +"lni" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"lnm" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light_switch/directional/south, +/obj/item/banner/cargo/mundane, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"lno" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/sign/warning/doors/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/execution/education) +"lnr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"lnt" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/theater) +"lnv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/station/command/corporate_suite) +"lny" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"lnD" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy2" + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/cmo) +"lnG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/security) +"lnJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + pixel_y = -6; + name = "CMO Privacy Shutters"; + req_access = list("cmo"); + id = "cmoprivacy" + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/keycard_auth/wall_mounted/directional/east{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"lnO" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"lnQ" = ( +/turf/closed/wall/r_wall, +/area/station/science/breakroom) +"lnS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lnV" = ( +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/grapes, +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"lnW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/smartfridge/drinks, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"lnZ" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/secure_closet/miner, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"loa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"loe" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"loi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"lop" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = -1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"loq" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"los" = ( +/turf/closed/wall, +/area/station/cargo/bitrunning/den) +"lot" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"loF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"loK" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/computer/records/security/laptop, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"loU" = ( +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"loY" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/station/science/lower) +"lpa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"lpd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"lpf" = ( +/obj/structure/table, +/obj/item/toy/cards/deck/blank{ + pixel_y = 3 + }, +/obj/item/toy/cards/deck{ + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"lpp" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"lpq" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lpr" = ( +/obj/docking_port/stationary/escape_pod, +/turf/open/space/basic, +/area/space) +"lpB" = ( +/obj/structure/sign/chalkboard_menu, +/turf/closed/wall, +/area/station/maintenance/starboard/fore) +"lpE" = ( +/obj/structure/chair/comfy{ + color = "#514e58" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/orange, +/area/station/commons/dorms) +"lpF" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"lpH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lpK" = ( +/obj/effect/turf_decal/tile/brown/opposingcorners{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"lpM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"lpQ" = ( +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/break_room) +"lpR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"lpV" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"lpX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"lqb" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"lqd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"lqn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lqr" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"lqH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"lqJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/dark_green/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/multitool, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"lqM" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/tree/jungle/small/style_5{ + pixel_y = -16 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"lqT" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/hydroponics/garden) +"lqV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Containment Pen #7"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lqX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"lre" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lrh" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/machinery/digital_clock/directional/south, +/obj/effect/turf_decal/trimline/white/arrow_cw{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lri" = ( +/obj/machinery/digital_clock/directional/west, +/obj/structure/stairs/west{ + color = "#3d3e42" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"lrn" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/machinery/computer/security/telescreen/engine/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"lro" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"lrr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"lrs" = ( +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lrx" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/solars/starboard/fore) +"lry" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"lrA" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/railing/corner{ + dir = 2; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"lrD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/science) +"lrF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/project) +"lrG" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/bed/medical/emergency{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/machinery/light_switch/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"lrI" = ( +/obj/structure/table, +/obj/item/multitool{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/multitool{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/multitool{ + pixel_y = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/sign/poster/official/nanotrasen_logo/directional/east, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 7; + pixel_y = -1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"lrJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 8 + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"lrL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"lrM" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/marker_beacon/purple, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"lrR" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"lrT" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -3 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"lrX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/service/theater) +"lsb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to South Ports" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"lsj" = ( +/obj/structure/flora/bush/style_2, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"lsn" = ( +/obj/structure/bed/medical/anchored{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/obj/structure/sign/clock/directional/east, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"lso" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"lsy" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/maintenance/central) +"lsz" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood/large, +/area/station/service/library) +"lsL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/science/ordnance) +"lsO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"lsP" = ( +/obj/structure/marker_beacon, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lsX" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/clothing/head/costume/sombrero, +/turf/open/floor/grass, +/area/station/maintenance/aft/greater) +"ltl" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/structure/closet/secure_closet/evidence, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/secure_safe/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"ltn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/testlab) +"ltq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/canvas/twentythree_nineteen, +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"lts" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ltt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/safe, +/obj/item/stack/spacecash/c1000, +/obj/item/storage/belt/holster, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"ltw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery/theatre) +"ltz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/central) +"ltE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ltH" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"ltJ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"ltL" = ( +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ltR" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"ltW" = ( +/turf/closed/wall, +/area/station/commons/locker) +"ltX" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ltY" = ( +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/effect/spawner/random/contraband/prison, +/obj/item/radio/intercom/prison/directional/west, +/obj/structure/closet/crate, +/obj/machinery/light/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"lud" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"lug" = ( +/obj/structure/bodycontainer/morgue/beeper_off, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"luj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"luk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"lun" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"luq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 1 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/fore/greater) +"lur" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"luu" = ( +/obj/machinery/duct, +/turf/open/floor/iron/stairs/medium{ + dir = 4 + }, +/area/station/commons/toilet/restrooms) +"luw" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"luy" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"luz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"luA" = ( +/obj/effect/turf_decal/trimline/white/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"luC" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/hedge, +/obj/structure/sign/map/left{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/vault/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"luF" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/central) +"luS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"luV" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"luZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"lve" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"lvf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_edge, +/area/station/medical/surgery/theatre) +"lvi" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"lvq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/vending/donksofttoyvendor, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"lvr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lvv" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"lvy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"lvD" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"lvH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"lvT" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"lwc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/vending/colavend, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"lwe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"lwf" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"lws" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"lwt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"lwA" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"lwB" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"lwH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"lwR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"lwY" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"lxd" = ( +/obj/structure/sink/kitchen/directional/west, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"lxl" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/engine, +/area/station/science/ordnance/burnchamber) +"lxm" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lxp" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/machinery/light/floor, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"lxq" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"lxr" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"lxu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lxT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "viroprivacy"; + name = "Virology Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/virology) +"lxV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/stairs/medium{ + color = "#5d341f" + }, +/area/station/commons/lounge) +"lye" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"lyn" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/machinery/smartfridge/food, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"lyt" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"lyy" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lyz" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Departure Lounge Security Post" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"lyF" = ( +/obj/machinery/vending/security, +/turf/open/floor/glass/reinforced, +/area/station/security/lockers) +"lyM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"lyR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lza" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"lzb" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"lzi" = ( +/obj/effect/spawner/structure/window, +/obj/effect/mapping_helpers/damaged_window, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"lzm" = ( +/obj/machinery/door/poddoor/massdriver_ordnance, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"lzn" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/bed/dogbed/ian, +/mob/living/basic/pet/dog/corgi/ian, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"lzo" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "pharmacy_shutters"; + name = "Pharmacy Shutters Control"; + req_access = list("pharmacy") + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/medical/pharmacy) +"lzr" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"lzw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lzx" = ( +/obj/structure/fake_stairs/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lzC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"lzE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"lzI" = ( +/obj/structure/flora/bush/pale/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/chapel) +"lzJ" = ( +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/medical/surgery/theatre) +"lzL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lzM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/commons/dorms) +"lzO" = ( +/turf/closed/wall/r_wall, +/area/station/security/interrogation) +"lzP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"lzR" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/breakroom) +"lAi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lAk" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + req_access = list("gateway"); + pixel_y = 0; + pixel_x = 24 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lAm" = ( +/obj/machinery/defibrillator_mount/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/machinery/digital_clock/directional/east, +/obj/structure/bed/medical{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lAq" = ( +/obj/machinery/cryo_cell{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/structure/sign/warning/cold_temp/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"lAr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"lAs" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/bridge) +"lAv" = ( +/obj/effect/turf_decal/siding/yellow/end{ + dir = 1 + }, +/obj/machinery/plumbing/receiver, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/small, +/area/station/medical/medbay/central) +"lAw" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"lAx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"lAy" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"lAB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/west{ + id = "Dorm4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"lAC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"lAF" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"lAH" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lAK" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"lAL" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"lAM" = ( +/turf/closed/wall/rust, +/area/space/nearstation) +"lAY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/tcommsat/computer) +"lBa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"lBb" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"lBc" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lBh" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lBi" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"lBk" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lBr" = ( +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/item/clothing/head/cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lBt" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"lBw" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/storage/backpack/duffelbag/sec/surgery, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"lBA" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"lBP" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lBS" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"lBY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"lBZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"lCa" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/cargo/miningoffice) +"lCd" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lCq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lCt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"lCP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"lCS" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "mining"; + name = "mining conveyor"; + pixel_y = 12 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"lCX" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/red/directional/south, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/aft) +"lDa" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lDb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"lDn" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"lDv" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"lDF" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"lDI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/range) +"lDK" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lDN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/chair, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"lDT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"lDU" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"lEb" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"lEf" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lEj" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark, +/area/station/command) +"lEl" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"lEm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"lEq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/right, +/area/station/medical/surgery/theatre) +"lEC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"lEG" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"lEI" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"lEP" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/cargo/drone_bay) +"lET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"lEY" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/surgery/theatre) +"lFb" = ( +/obj/structure/flora/bush/pale/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/chapel) +"lFe" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"lFg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"lFh" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"lFj" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/stripes/red/end{ + dir = 8 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/lobby) +"lFs" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white{ + color = "#74b2d3" + }, +/obj/effect/landmark/start/cook, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"lFA" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A" + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"lFM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/departments/science/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"lFO" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood/end, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"lFV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"lFZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lGd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/item/newspaper{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"lGf" = ( +/turf/closed/wall, +/area/station/maintenance/department/bridge) +"lGo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"lGp" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lGt" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lGA" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) +"lGB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/hangover, +/obj/machinery/computer/security/telescreen/bar/directional/west{ + name = "Laser Tag Monitor" + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"lGD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"lGE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"lGR" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/computer/warrant, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"lGS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lGU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/miningoffice) +"lGW" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/wrench, +/obj/item/lightreplacer, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"lHg" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"lHj" = ( +/obj/structure/flora/rock/pile/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lHs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"lHw" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"lHF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lHR" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lHS" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lIr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"lIu" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/virology) +"lID" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"lIE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/obj/item/food/ready_donk/mac_n_cheese{ + pixel_y = 5 + }, +/obj/machinery/door/window/left/directional/south, +/obj/item/storage/box/coffeepack{ + pixel_x = 17; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"lIG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 1 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"lII" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/service/kitchen/diner) +"lIJ" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/confetti, +/obj/item/reagent_containers/spray/chemsprayer/party, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/maintenance/starboard/central) +"lIL" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lIM" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/aft) +"lIO" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/fore) +"lIR" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"lIY" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"lJd" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"lJf" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"lJg" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/library/lounge) +"lJk" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"lJl" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"lJm" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"lJr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lJB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"lJF" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"lJV" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lJZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"lKa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"lKl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lKm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/disposal) +"lKA" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"lKG" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"lKM" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"lKP" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"lKQ" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"lKT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"lKW" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"lKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lLa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"lLb" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/official/love_ian/directional/north, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"lLd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"lLe" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"lLg" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"lLq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/science/genetics) +"lLt" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"lLB" = ( +/obj/structure/chair/plastic, +/obj/structure/sign/calendar/directional/north, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lLJ" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"lLN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"lLX" = ( +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"lLY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"lMc" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"lMe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"lMh" = ( +/obj/item/pillow{ + pixel_y = 10 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/starboard/central) +"lMi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"lMl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "bar_counter"; + name = "Bar Counter Shutters" + }, +/obj/structure/desk_bell{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"lMn" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/circuit/green, +/area/station/science/robotics/augments) +"lMp" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lMq" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"lMy" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"lMz" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lME" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"lMG" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"lMI" = ( +/obj/machinery/mineral/stacking_machine, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"lML" = ( +/obj/structure/bodycontainer/morgue/beeper_off, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"lMM" = ( +/obj/structure/table/optable, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"lMO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"lMP" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/poster/official/get_your_legs/directional/west, +/obj/item/toy/figure/psychologist{ + pixel_x = 7; + pixel_y = 18 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"lMQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"lMX" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/circuits) +"lNb" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"lNc" = ( +/obj/effect/spawner/random/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"lNe" = ( +/obj/structure/musician/piano, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 10; + pixel_x = -1 + }, +/obj/item/cigarette{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"lNi" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/stamp/denied{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/stamp{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stamp/head/qm{ + pixel_x = 7 + }, +/obj/machinery/requests_console/directional/south{ + department = "Quartermaster's Desk"; + name = "Quartermaster's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/ore_update, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"lNm" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"lNq" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lNr" = ( +/obj/structure/railing{ + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"lNs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lNx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lNB" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + req_access = list("minisat"); + pixel_y = -30 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/motion/directional/south{ + network = list("minisat") + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"lND" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/central) +"lOj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/library/upper) +"lOk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos) +"lOn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"lOr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"lOy" = ( +/obj/machinery/status_display/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"lOA" = ( +/obj/machinery/rnd/production/techfab/department/service, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"lOJ" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"lOM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"lOP" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"lOQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"lPf" = ( +/obj/structure/hedge, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"lPn" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"lPq" = ( +/obj/structure/bedsheetbin, +/obj/structure/table/glass, +/turf/open/floor/glass/reinforced, +/area/station/commons/dorms/laundry) +"lPs" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"lPv" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"lPw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"lPx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"lPA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"lPF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"lPG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"lPL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"lPT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"lQe" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/directions/upload/directional/north{ + pixel_y = 29; + dir = 4 + }, +/obj/structure/sign/directions/vault/directional/north{ + pixel_y = 37 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"lQk" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/construction/mining/aux_base) +"lQl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"lQm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lQo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lQy" = ( +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"lQM" = ( +/obj/structure/flora/grass/green/style_random, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/item/food/grown/wheat, +/turf/open/misc/sandy_dirt, +/area/station/maintenance/starboard/central) +"lQQ" = ( +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lQR" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"lQU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lRc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"lRd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"lRg" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/command) +"lRi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"lRl" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"lRA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"lRC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lRE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lRL" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/starboard) +"lRN" = ( +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"lRO" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Pen #7"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lRR" = ( +/obj/machinery/vending/clothing, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"lRU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"lRZ" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"lSc" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"lSj" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"lSt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"lSD" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"lSF" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"lSU" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"lSX" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"lTc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "visitorflash" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison/visit) +"lTn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/greater) +"lTt" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/maintenance/central) +"lTu" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"lTw" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/obj/structure/railing, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"lTA" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"lTC" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/toy/katana, +/turf/open/floor/bamboo/tatami/black, +/area/station/maintenance/starboard/central) +"lTG" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"lTL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"lTM" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"lTT" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"lTU" = ( +/obj/structure/broken_flooring/corner/directional/north, +/obj/effect/spawner/random/structure/tank_holder, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"lTZ" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/engine_smes) +"lUl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"lUo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/construction/mining/aux_base) +"lUx" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/flashlight/flare/candle{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"lUA" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"lUD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"lUM" = ( +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"lUQ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"lUV" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/breakroom) +"lVd" = ( +/obj/structure/stairs/north{ + color = "#5d341f" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"lVe" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"lVf" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"lVs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"lVw" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"lVD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"lVJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"lVK" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - CO2" + }, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"lVP" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/port) +"lWa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"lWb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lamp/green{ + pixel_y = 17 + }, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/item/pen, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"lWc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"lWj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"lWq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/medical/morgue) +"lWu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Teleporter Airlock" + }, +/turf/open/floor/plating, +/area/station/command/teleporter) +"lWv" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lWy" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lWE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/food/pie/cream, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"lWG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/caution/red{ + dir = 1 + }, +/obj/structure/railing{ + color = "#4874A2" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"lXs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/stool/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"lXu" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/steam_vent, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"lXv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/solars/starboard/fore) +"lXz" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/service) +"lXF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"lXJ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"lXK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"lXL" = ( +/obj/structure/sign/clock, +/turf/closed/wall, +/area/station/service/library) +"lXP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/directional/west, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"lXR" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Laundry Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"lXW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"lXX" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"lYc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/storage/fancy/donut_box{ + pixel_x = -1; + pixel_y = -14 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"lYh" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"lYk" = ( +/obj/structure/rack, +/obj/item/soap/nanotrasen, +/obj/item/reagent_containers/cup/bucket, +/turf/open/floor/plastic, +/area/station/security/prison/work) +"lYm" = ( +/obj/structure/table, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/hatchet, +/obj/effect/turf_decal/siding/green{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"lYs" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"lYy" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/vending/colavend, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"lYF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"lYI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"lYL" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"lYN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"lYT" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/miningoffice) +"lYX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/pen/fountain{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"lYY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"lYZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/theater) +"lZa" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"lZb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"lZc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/hydroponics) +"lZd" = ( +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/white, +/area/station/science/lab) +"lZf" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"lZk" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/bookcase/random/reference, +/obj/item/radio/intercom/directional/north, +/obj/item/toy/figure/atmos{ + pixel_y = 18; + pixel_x = -10 + }, +/obj/item/clothing/glasses/heat{ + pixel_y = 15; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/break_room) +"lZq" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/misc/grass, +/area/station/engineering/main) +"lZs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"lZu" = ( +/obj/structure/hedge, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"lZA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/commons/vacant_room/commissary) +"lZC" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lab) +"lZG" = ( +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"lZW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"mac" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/breakroom) +"mah" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/locker) +"maj" = ( +/obj/structure/table/reinforced, +/obj/item/food/moth_cheese_cakes{ + pixel_y = 5 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"maG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"maH" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"maL" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"maM" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"maN" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"maR" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"maW" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"maX" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Petting Zoo" + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/mob/living/basic/pet/dog/corgi/puppy/slime, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"maY" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"maZ" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"mbf" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/primary/starboard) +"mbk" = ( +/obj/machinery/door/airlock/security{ + name = "Armory" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"mbl" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/sink/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"mbu" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Containment Pen #3"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mbA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/dorms) +"mbB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/security/brig) +"mbK" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"mbN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos/project) +"mbY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"mbZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mck" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/rack, +/obj/item/bodypart/arm/right/robot{ + pixel_x = 3 + }, +/obj/effect/turf_decal/bot_white, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_y = 4 + }, +/obj/item/bodypart/arm/left/robot{ + pixel_x = -3 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"mcq" = ( +/obj/docking_port/stationary/syndicate/northwest{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"mcr" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mcB" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"mcX" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/landmark/start/paramedic, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"mdb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mdd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mdg" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"mdh" = ( +/obj/item/reagent_containers/cup/glass/coffee, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"mdm" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"mdp" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"mdr" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/closet/toolcloset, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"mdt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"mdv" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mdD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/science/explab) +"mdJ" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light/end, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/gloves/color/blue{ + desc = "An old pair of nitrile gloves, with no sterile properties."; + name = "old nitrile gloves" + }, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/item/reagent_containers/cup/rag, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"mdT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"mec" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"med" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"mek" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"mes" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mez" = ( +/obj/machinery/door/airlock/maintenance/glass{ + name = "Fish Shop" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"meA" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/toy/plush/moth, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"meC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/obj/machinery/camera/autoname/directional/west{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"meE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/white/side, +/area/station/hallway/primary/fore) +"meI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"meJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"meK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/prison) +"meN" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"meR" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"meS" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/captain) +"mfi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"mfk" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mfo" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"mfz" = ( +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/red, +/area/station/maintenance/port/aft) +"mfA" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/banner/security/mundane, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"mfC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"mfD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port/aft) +"mfF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/central) +"mfK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"mfN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/purple, +/area/station/science/breakroom) +"mfR" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"mfZ" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mgc" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mgk" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mgn" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/light/small/directional/north, +/turf/open/floor/glass, +/area/station/hallway/secondary/service) +"mgv" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"mgC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/machinery/meter, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnanceburn" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"mgF" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"mgG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"mgN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"mgP" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mgT" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/boutique) +"mgW" = ( +/obj/item/kirbyplants/organic/plant21, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"mgX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mhb" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"mhc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/west{ + id = "Dorm3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mhj" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"mhm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/chem_storage) +"mhr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"mhs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"mhy" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "CMO Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"mhG" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/mob/living/basic/sloth/paperwork, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"mhI" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/secure_safe/directional/north, +/obj/item/storage/backpack/duffelbag/syndie/hitman, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/gun/ballistic/automatic/pistol/deagle/gold, +/obj/effect/turf_decal/bot, +/obj/structure/safe/vault, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"mhQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"mhX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Library Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/library, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mih" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Secure Gear Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"mij" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/station/security/breakroom) +"mio" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"miz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door/directional/west{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + req_access = list("cargo"); + pixel_y = -8 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"miA" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"miD" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/table, +/obj/item/folder/red, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"miK" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"miM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/library/upper) +"miT" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"mjb" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_blue, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mjg" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"mjo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/railing/corner/end/flip, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"mjp" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/solars/port/fore) +"mjA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"mjF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mjI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"mjJ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"mjN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"mjR" = ( +/obj/structure/sign/warning/secure_area/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"mjW" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/service/library/upper) +"mjZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"mkg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/commons/locker) +"mkk" = ( +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Medical"; + name = "Medical Fax Machine" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"mkq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"mkr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/photocopier, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"mkx" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mkA" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"mkB" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"mkF" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#5971a6"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"mkJ" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door/directional/north{ + pixel_x = 6; + id = "atmoslock"; + req_access = list("engineering"); + name = "Atmospherics Lockdown" + }, +/obj/machinery/button/door/directional/north{ + pixel_x = -6; + id = "engielock"; + req_access = list("engineering"); + name = "Engineering Lockdown" + }, +/obj/machinery/button/door/directional/north{ + pixel_y = 34; + id = "Secure Storage"; + req_access = list("engine_equip"); + name = "Engineering Secure Storage" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/command/heads_quarters/ce) +"mkK" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/turf/open/floor/iron/white/smooth_corner, +/area/station/medical/surgery/theatre) +"mkL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"mkM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#5d341f" + }, +/area/station/service/theater) +"mkN" = ( +/obj/machinery/door/airlock/wood{ + name = "Investigations Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"mkO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"mkP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"mkQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"mkR" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/shower) +"mkS" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mkT" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mlm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"mlp" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/barber) +"mlu" = ( +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"mlw" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant1, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"mlA" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"mlF" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mlK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"mlN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"mlT" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/misc/grass, +/area/station/engineering/atmos) +"mlU" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"mlX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"mmh" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"mmi" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"mmp" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/hop) +"mmq" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/service/theater) +"mmw" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"mmD" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"mmG" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Pen #4"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mmL" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/modular_computer/preset/civilian, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"mmR" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"mnb" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"mng" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"mnh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mnl" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mnp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage) +"mnv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/tank_holder/extinguisher{ + pixel_x = 7 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"mnG" = ( +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/flare/candle{ + pixel_y = 5; + pixel_x = 16 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"mnR" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"mnU" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"mnW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"mnY" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/port) +"mnZ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"mog" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mon" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/command) +"moz" = ( +/obj/item/shovel, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"moJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"moK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"moM" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/brig) +"moU" = ( +/obj/structure/sign/poster/contraband/random/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library) +"mpd" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"mpm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/security/eva) +"mpz" = ( +/obj/item/ammo_casing{ + pixel_x = -6; + pixel_y = -6; + dir = 8 + }, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 10 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"mpA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"mpB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/machinery/air_sensor/ordnance_freezer_chamber, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"mpD" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/smartfridge/food, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"mpE" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"mpF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"mpG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/fore) +"mpN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"mpP" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"mpQ" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/coffeemaker/impressa{ + pixel_x = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/west, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = 7; + pixel_y = 19 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"mpS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mpZ" = ( +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"mqb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/solars/port/aft) +"mqg" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"mqk" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/machinery/iv_drip, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"mqr" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/hedge, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/fore) +"mqu" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mqG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/cargo/lower) +"mqK" = ( +/turf/closed/wall/r_wall, +/area/station/command) +"mqN" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"mqR" = ( +/obj/structure/rack, +/obj/effect/spawner/random/trash/soap, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mqV" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"mqX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/red, +/obj/effect/landmark/start/depsec/medical, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"mqY" = ( +/obj/structure/no_effect_signpost, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mqZ" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) +"mrb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"mri" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"mrp" = ( +/turf/open/floor/iron/stairs/left{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/library/upper) +"mrr" = ( +/turf/open/floor/glass/reinforced, +/area/station/commons/toilet/shower) +"mrt" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mrv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/stock_parts/power_store/cell/high{ + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"mrN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"mrO" = ( +/obj/structure/table/glass, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"mrP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/flora/rock/pile/style_random, +/turf/open/water, +/area/station/ai_monitored/aisat/exterior) +"mrU" = ( +/obj/structure/sign/departments/security/directional/south, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"mrW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"mrY" = ( +/obj/structure/fireaxecabinet/mechremoval/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"msa" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"msb" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"msg" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"msh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"msm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"msq" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/supermatter/room/upper) +"msr" = ( +/obj/structure/closet/emcloset, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"msw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 14 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/artistic, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"msy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"msE" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"msF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"msQ" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = 8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"msS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/ai_monitored/command/nuke_storage) +"msT" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"msZ" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"mta" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"mtb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"mti" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"mtj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mty" = ( +/obj/machinery/door/airlock{ + name = "Permabrig Showers" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/shower) +"mtA" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"mtC" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/education) +"mtF" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"mud" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"muf" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"muj" = ( +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"mup" = ( +/obj/effect/turf_decal/bot, +/obj/structure/secure_safe/directional/east, +/obj/effect/spawner/random/armory/rubbershot, +/obj/structure/rack, +/obj/machinery/camera/autoname/motion/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"muq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mus" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/directional/south{ + department = "Head of Security's Desk"; + name = "Head of Security's Requests Console" + }, +/obj/item/stamp/head/hos{ + pixel_x = 16; + pixel_y = 5 + }, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"mut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"muy" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/table/glass, +/obj/structure/bedsheetbin, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"muG" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/cafeteria) +"muM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/chair/wood/wings, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"muP" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mvc" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/glass, +/obj/item/flashlight/lamp, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"mvd" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/red/directional/south, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/fore) +"mvf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mvg" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mvl" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison/safe) +"mvt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/chemistry) +"mvJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"mvO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 7 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"mvP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/lower) +"mvR" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/machinery/navbeacon{ + location = "S4-Command-Lobby"; + codes_txt = "patrol;next_patrol=S5-Command-Lobby" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mvW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"mvZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/project) +"mwa" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"mwm" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/library) +"mwp" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"mwq" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/reagent_containers/condiment/pack/sugar{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mwA" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"mwF" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"mwH" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mwM" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"mwN" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"mwP" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"mwW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"mxc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"mxe" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/medical) +"mxp" = ( +/obj/machinery/door/airlock/public{ + name = "Restroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"mxq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"mxs" = ( +/obj/structure/hedge, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"mxB" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/botanical_waste, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"mxG" = ( +/turf/open/floor/glass/reinforced, +/area/station/command) +"mxI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mxM" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mxN" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"mxS" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"mxU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mxV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"mxY" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"myd" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mye" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"myq" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/structure/tank_holder/oxygen/yellow, +/obj/machinery/light_switch/directional/south, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"myr" = ( +/obj/structure/flora/rock/pile, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"myt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"myv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/prison/visit) +"myG" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/water, +/area/station/maintenance/port/central) +"myL" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"myM" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"myU" = ( +/obj/structure/rack, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"myV" = ( +/turf/open/floor/catwalk_floor/iron_white, +/area/station/hallway/primary/fore) +"myW" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"mzc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"mze" = ( +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/soda_cans/tonic{ + pixel_y = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/smooth_edge, +/area/station/security/prison/workout) +"mzf" = ( +/obj/effect/turf_decal/siding, +/obj/machinery/newscaster/directional/north, +/obj/machinery/computer/records/medical, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"mzh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"mzp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/locker) +"mzt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mzz" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"mzE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"mzH" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"mzP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"mzY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"mAb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"mAi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/displaycase/labcage, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"mAl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"mAn" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/glass, +/area/station/service/library/upper) +"mAq" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mAr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/bush/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mAu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"mAx" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/sign/calendar/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/breakroom) +"mAy" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/item/petri_dish{ + pixel_y = 17; + pixel_x = 2 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"mAz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Emitter Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"mAA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mAE" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"mAF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/chisel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"mAH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/shovel{ + pixel_x = -2 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/stack/ore/silver, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/miningoffice) +"mAI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"mAT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/corner, +/obj/machinery/button/door/directional/west{ + id = "visitation"; + req_access = list("brig"); + name = "Visitation Shutters"; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = -24; + pixel_y = -6 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/brig) +"mAU" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/book/manual/wiki/detective{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"mBc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/sign/poster/contraband/rush_propaganda/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/fish_case, +/obj/item/fishing_line, +/turf/open/floor/iron/smooth_corner, +/area/station/maintenance/port/aft) +"mBd" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"mBg" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/parquet, +/area/station/maintenance/starboard/central) +"mBh" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mBl" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/north, +/obj/machinery/button/door/directional/north{ + name = "HFR Shutters Control"; + id = "hfr"; + req_access = list("atmospherics") + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"mBm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"mBn" = ( +/obj/structure/flora/bush/grassy/style_3, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/grass, +/area/station/science/lower) +"mBp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mBs" = ( +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/item/cigbutt{ + pixel_y = -2; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"mBA" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/break_room) +"mBI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mBM" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"mBN" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"mBP" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mBX" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mCb" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/medbay/central) +"mCc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/item/clothing/neck/beads, +/obj/structure/cable, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"mCk" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"mCn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"mCr" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"mCw" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mCy" = ( +/turf/closed/wall, +/area/station/medical/patients_rooms/room_a) +"mCz" = ( +/turf/open/openspace, +/area/station/hallway/secondary/command) +"mCD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/toy/balloon/corgi{ + pixel_y = 4; + pixel_x = -16 + }, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mCE" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/purple, +/obj/structure/marker_beacon/lime, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"mCG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"mCI" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/rack, +/obj/item/storage/medkit/regular, +/obj/item/reagent_containers/cup/bottle/multiver, +/obj/item/reagent_containers/syringe, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"mCK" = ( +/obj/structure/cable, +/obj/machinery/digital_clock/directional/north, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mCQ" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/jungle, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"mDb" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/medical/pharmacy) +"mDc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + req_access = list("gateway"); + pixel_y = 0; + pixel_x = -24 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"mDe" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mDh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"mDr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage) +"mDt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"mDv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"mDA" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/commons/dorms) +"mDH" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/contraband/rush_propaganda/directional/north, +/obj/effect/turf_decal/trimline/dark_green/filled/shrink_ccw, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port) +"mDT" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/door/window/left/directional/north{ + name = "Court Cell"; + req_access = list("brig") + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"mDV" = ( +/obj/machinery/light/directional/west, +/obj/structure/bed/medical/emergency, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/vending/wallmed/directional/west{ + pixel_x = -26 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"mDW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"mEf" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mEo" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"mEq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos/project) +"mEs" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"mEv" = ( +/obj/machinery/shower/directional/south{ + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/structure/fluff/shower_drain, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"mEz" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"mEP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"mFe" = ( +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"mFh" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/cable, +/obj/machinery/power/energy_accumulator/grounding_rod/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mFj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"mFk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/south{ + dir = 5; + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"mFl" = ( +/obj/machinery/mining_weather_monitor/directional/east, +/obj/machinery/conveyor{ + id = "mining" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/brm, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"mFr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/service/chapel/funeral) +"mFu" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"mFA" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/keyboard_shell{ + pixel_y = 3 + }, +/obj/item/radio/headset{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"mFE" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Pen #5"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"mFP" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mFU" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"mGd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"mGm" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"mGv" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/space/nearstation) +"mGG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"mGK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mGT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom/holding) +"mGW" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"mHe" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner, +/obj/item/toy/seashell{ + icon_state = "shell2" + }, +/obj/machinery/digital_clock/directional/west, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"mHj" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"mHk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"mHs" = ( +/obj/effect/turf_decal/siding/brown/end{ + dir = 8; + plane = -9 + }, +/obj/machinery/door/airlock/highsecurity, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/qm) +"mHv" = ( +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"mHy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/solars/port/fore) +"mHz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"mHB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"mHG" = ( +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"mHH" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mHL" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mHO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mHT" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/safe) +"mHY" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "Disposal Exit Vent" + }, +/obj/machinery/conveyor{ + id = "garbage" + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"mIa" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 5" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"mIi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/command/heads_quarters/ce) +"mIj" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/medicine, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_a) +"mIo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"mIt" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mIv" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mIB" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"mID" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mIF" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"mIJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"mIN" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"mIO" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"mIP" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "chem_lockdown"; + name = "Chemistry Lockdown Control"; + req_access = list("plumbing") + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"mIT" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"mJd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/pumproom) +"mJl" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album/chapel, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"mJn" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"mJq" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"mJr" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"mJt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"mJA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"mJH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/sofa/right/maroon{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 1 + }, +/obj/item/toy/balloon/corgi, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/starboard/central) +"mJR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mJT" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"mJY" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mKa" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P8-Service-Hallway"; + codes_txt = "patrol;next_patrol=P9-Service-Hallway" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"mKe" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"mKi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"mKj" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/table/reinforced, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/thermal_regulator, +/obj/item/mod/module/signlang_radio, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"mKk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"mKm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"mKr" = ( +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_y = -2 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"mKt" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/aft) +"mKy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"mKD" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"mKE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"mKG" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"mKH" = ( +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mKJ" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"mKK" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/autoname/motion/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"mKS" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/drone_bay) +"mKX" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mKY" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"mLb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mLe" = ( +/obj/structure/table, +/obj/item/storage/crayons{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/disk/holodisk{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mLg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/machinery/door/window/left/directional/north, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"mLj" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mLn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"mLr" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"mLv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"mLz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"mLG" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mLK" = ( +/obj/structure/rack, +/obj/item/crowbar/large/heavy, +/obj/item/wirecutters, +/obj/item/wrench, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/mechbay) +"mLL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central) +"mLR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/sign/warning/test_chamber/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"mMc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"mMd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"mMr" = ( +/obj/structure/tank_holder/extinguisher, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"mMD" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"mMU" = ( +/obj/item/clothing/head/costume/party, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid9" + }, +/area/space/nearstation) +"mMZ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"mNi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"mNm" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mNn" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"mNp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"mNv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/service/chapel, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Chapel Junction" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"mNx" = ( +/obj/structure/rack, +/obj/machinery/digital_clock/directional/east, +/obj/item/clothing/gloves/color/blue, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"mNy" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/item/assembly/mousetrap, +/obj/item/food/deadmouse, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"mND" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mNJ" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/lockers) +"mNK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"mNN" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"mNQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"mNS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"mOd" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/service_all, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"mOe" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"mOg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"mOi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"mOk" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/cup/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/reagent_containers/cup/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/knife/plastic, +/obj/item/knife/plastic, +/obj/item/knife/plastic, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/box/drinkingglasses, +/obj/item/radio/intercom/prison/directional/north, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"mOm" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"mOq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"mOt" = ( +/obj/structure/chair/sofa/right/brown, +/obj/item/toy/plush/moth{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"mOv" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"mOw" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mOx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"mOA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"mOC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/medical) +"mOD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/stool/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/brig) +"mOF" = ( +/obj/machinery/modular_computer/preset/civilian, +/obj/item/toy/figure/roboticist{ + pixel_y = 17; + pixel_x = -8 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"mOH" = ( +/obj/structure/railing{ + dir = 8; + color = "#4874A2" + }, +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"mOI" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/conveyor{ + dir = 10; + id = "mining" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/bouldertech/refinery, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"mOJ" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"mOK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"mOS" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/wrapping/pinata, +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/port) +"mOZ" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/commons/dorms) +"mPc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"mPk" = ( +/turf/closed/wall, +/area/station/cargo/lobby) +"mPm" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/effect/landmark/navigate_destination/engineering, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"mPp" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant1, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"mPs" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mPt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/workout) +"mPw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/item/book/bible, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mPx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"mPA" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"mPI" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mPK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/cargo) +"mPS" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/generic/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/minibar) +"mPT" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"mPX" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/security/interrogation) +"mQb" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"mQc" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron, +/area/station/security/mechbay) +"mQd" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/fire/directional/south, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"mQn" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/central) +"mQp" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"mQu" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Holodeck - Fore 1"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"mQv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mQz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"mQG" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"mQH" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/science/genetics) +"mQJ" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"mQT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos/pumproom) +"mQV" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"mQY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/locker) +"mRd" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"mRg" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mRi" = ( +/obj/structure/tank_holder/extinguisher, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"mRk" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/structure/closet/mini_fridge{ + anchored = 0 + }, +/obj/structure/railing, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"mRt" = ( +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"mRw" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/tree/jungle/small/style_2{ + pixel_y = -16 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"mRA" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"mRB" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"mRG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"mRI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"mRM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"mRQ" = ( +/obj/machinery/vending/wardrobe/coroner_wardrobe, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"mRU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"mRW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"mSb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/rock/pile/style_3, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"mSd" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/red/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"mSl" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"mSn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"mSp" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"mSv" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"mSB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"mSD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/security) +"mSJ" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/transport/linear/public, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"mSL" = ( +/obj/machinery/door/airlock/research{ + name = "Chemical Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"mSM" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"mSS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mST" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Departure Lounge Security Post" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"mSW" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"mSY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"mTb" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"mTd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 5 + }, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"mTe" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/fax{ + fax_name = "Psychology Office"; + name = "Psychology Office Fax Machine" + }, +/obj/item/book/manual/wiki/medicine{ + page_link = "Psychologist"; + name = "Brain System" + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"mTg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/east, +/obj/vehicle/sealed/mecha/ripley/cargo, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"mTn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay Clinic" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/lobby) +"mTr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"mTx" = ( +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"mTI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("eva") + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"mTK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"mTY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"mUg" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"mUh" = ( +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/hallway/primary/port) +"mUi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"mUn" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/maintenance/central) +"mUq" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "cargunload"; + name = "Supply Dock Loading Door" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"mUr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"mUy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"mUI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"mUJ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"mUP" = ( +/turf/closed/wall, +/area/station/service/minibar) +"mUW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mVa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"mVd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/spacevine{ + can_spread = 0; + pixel_y = 32 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"mVj" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"mVq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"mVt" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"mVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"mVH" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"mVI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/smartfridge/drinks, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"mVK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/sign/warning/pods/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"mVL" = ( +/obj/effect/turf_decal/trimline/white, +/obj/item/toy/basketball, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/textured_large, +/area/station/security/prison) +"mVO" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"mVP" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"mVU" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/item/reagent_containers/cup/glass/bottle/pruno, +/obj/machinery/digital_clock/directional/east, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"mVZ" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/secure_closet/courtroom, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"mWb" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/port/aft) +"mWe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"mWn" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"mWr" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/lab) +"mWG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "circuitprivacy"; + name = "Circuit Lab Shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/science/circuits) +"mWJ" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/security/prison/workout) +"mWK" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"mWY" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"mXc" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"mXA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"mXF" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"mXO" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"mXZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/iron/textured_corner{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"mYe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"mYh" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"mYk" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"mYq" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"mYr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"mYs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"mYu" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mYv" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"mYy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"mYB" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"mYR" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"mYT" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"mZc" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"mZd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/stool/directional/north, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"mZe" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"mZk" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"mZl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"mZm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"mZp" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"mZs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"mZB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"mZJ" = ( +/obj/machinery/atmospherics/components/tank, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"mZM" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/brig) +"mZN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"mZW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"naa" = ( +/turf/closed/wall, +/area/station/maintenance/port/aft) +"nac" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/item/toy/figure/geneticist{ + pixel_y = 18; + pixel_x = -6 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"nae" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nam" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"nat" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"naE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"naJ" = ( +/obj/structure/table/wood/fancy, +/obj/item/lipstick/purple{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/lipstick/black{ + pixel_y = 7; + pixel_x = -2 + }, +/obj/item/lipstick/jade{ + pixel_y = 11; + pixel_x = 2 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"naK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/navbeacon{ + location = "F12-Science"; + codes_txt = "patrol;next_patrol=F13-Science" + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"naL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"naR" = ( +/obj/structure/chair/wood/wings, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/turf/open/floor/wood/large, +/area/station/service/library) +"naT" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room/upper) +"naY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"nbd" = ( +/obj/structure/flora/ash/seraka, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/misc/asteroid/basalt{ + icon_state = "basalt6" + }, +/area/station/service/chapel) +"nbh" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"nbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nbo" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/lawyer, +/obj/machinery/computer/security/telescreen/prison/directional/north, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"nbr" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"nbz" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/griddle, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"nbA" = ( +/obj/structure/closet/masks, +/obj/effect/turf_decal/trimline/dark_red/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness) +"nbK" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"nbL" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"nbQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"nbU" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/aft) +"nbV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"nbX" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/service/chapel) +"nbY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"nch" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/departments/medbay/alt/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ncj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nck" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/hfr_room) +"ncq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"nct" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/theater) +"ncv" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"ncB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/project) +"ncN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"ncT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/department/cargo) +"ncW" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"ncX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/east, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nda" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron, +/area/station/commons/dorms) +"ndh" = ( +/obj/machinery/door/poddoor/preopen{ + id = "conference_blast"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"ndi" = ( +/mob/living/basic/pet/dog/breaddog{ + dir = 4; + name = "Pedro" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/bed/dogbed, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/aft/greater) +"ndj" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ndp" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"nds" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"ndx" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ndy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/command/storage/eva) +"ndD" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"ndG" = ( +/turf/closed/wall, +/area/station/commons/toilet/restrooms) +"ndK" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"ndP" = ( +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"ndX" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 1 + }, +/obj/machinery/button/elevator/directional/west{ + id = "Bridge2Elevator" + }, +/obj/machinery/lift_indicator/directional/west{ + pixel_y = -1; + pixel_x = -33; + linked_elevator_id = "Bridge2Elevator" + }, +/obj/machinery/door/window/elevator/left/directional/south{ + transport_linked_id = "Bridge2Elevator"; + elevator_mode = 1; + req_access = list("command") + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command) +"ndZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nea" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/lime, +/turf/open/space, +/area/space/nearstation) +"ned" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/wood/large, +/area/station/hallway/secondary/command) +"neh" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/vending/games, +/obj/effect/turf_decal/bot_red, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"nei" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"nep" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/maintenance/central) +"neJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"neN" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"neP" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/radio, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"neS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"neW" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"neY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig/lower) +"nfm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"nfn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/aft) +"nfw" = ( +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/large/style_2{ + pixel_x = -2 + }, +/obj/structure/flora/rock/pile/jungle/large/style_3{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/flora/grass/green/style_random, +/obj/item/food/salad/spring_salad, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"nfB" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nfO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"nfT" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/medical/pharmacy) +"nfY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"ngi" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/transport/linear/public, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"ngk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/engineering/engine_smes) +"ngm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"ngp" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/rack, +/obj/machinery/syndicatebomb/training, +/obj/item/screwdriver{ + pixel_y = 7 + }, +/obj/item/wirecutters, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"ngr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"ngK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/hallway/primary/fore) +"ngL" = ( +/turf/closed/wall, +/area/station/service/bar) +"ngR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 17; + pixel_x = 4 + }, +/obj/machinery/microwave, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"ngS" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/breakroom) +"ngX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Laser Tag Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"nhe" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"nhj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"nhl" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"nho" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "bar_counter"; + name = "Bar Counter Shutters" + }, +/obj/item/holosign_creator/robot_seat/bar, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"nhw" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"nhD" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"nhG" = ( +/obj/structure/ladder, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light/directional/north{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"nhJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nhR" = ( +/turf/closed/wall, +/area/station/cargo/office) +"nhT" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"nhW" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nhX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/door/window/left/directional/south{ + name = "Research Test Chamber"; + req_access = list("science") + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"nia" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/safety_report/directional/west, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"nic" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/glass, +/area/station/service/library/upper) +"nis" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"nix" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/storage/primary) +"niy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"niA" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"niE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/science/lower) +"niJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Primary Treatment Centre" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"niR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"niX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"njb" = ( +/turf/closed/wall/r_wall, +/area/station/medical/virology) +"njf" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/machinery/airalarm/directional/west, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"njl" = ( +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"njn" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/machinery/light/no_nightlight/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"njr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"njv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/obj/item/paper_bin/carbon{ + pixel_y = 3; + pixel_x = 16 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"njw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"njx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/fence/door, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"njO" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"njP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"nkk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nkl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"nko" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/paper/guides/jobs/hydroponics{ + pixel_x = -7 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/machinery/door/window/right/directional/north{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"nkt" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"nkw" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/reinforced, +/obj/item/newspaper, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"nkx" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"nkA" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"nkG" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"nkL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Project Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nkU" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nkV" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"nkX" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"nkZ" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/storage) +"nlc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"nli" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nlm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"nln" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"nlq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"nlv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"nlE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"nlF" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nlG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"nlI" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/command) +"nlQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/processing) +"nlV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/sorting) +"nlZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port) +"nml" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nmq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"nmw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nmJ" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/structure/sign/poster/official/here_for_your_safety/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"nmK" = ( +/obj/structure/hedge, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"nmY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/prison/safe) +"nnc" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"nnw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"nnA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"nnG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/fuchsia, +/turf/open/space/openspace, +/area/space/nearstation) +"nnL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nnM" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/security/brig) +"nnP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "qmprivacy"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) +"nnQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/modular_computer/preset/civilian, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nnR" = ( +/obj/structure/chair/sofa/bamboo/left{ + dir = 1 + }, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"nnW" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"nnZ" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/rust, +/area/space/nearstation) +"noa" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/item/radio/intercom/command/directional/east{ + pixel_x = 28 + }, +/obj/machinery/button/door/directional/south{ + id = "CapFoyer"; + normaldoorcontrol = 1; + name = "Interior Door Control" + }, +/turf/open/floor/iron/dark, +/area/station/command) +"noc" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"noe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nog" = ( +/obj/structure/noticeboard/directional/north{ + desc = "A memorial wall for pinning mementos upon."; + name = "memorial board" + }, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/table/wood/fancy, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"nol" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"nos" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/structure/table, +/obj/item/reagent_containers/cup/soda_cans/cola{ + pixel_y = 10; + pixel_x = -6 + }, +/obj/item/clothing/head/soft{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/toy/beach_ball/baseball{ + pixel_x = -3 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/cargo/lower) +"nou" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/command/heads_quarters/hos) +"nov" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nox" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"noF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/light/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"noQ" = ( +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"noR" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"noW" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library) +"npb" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"npd" = ( +/obj/structure/hoop{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_half, +/area/station/security/prison) +"npe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"npj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/central) +"npk" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"npr" = ( +/obj/structure/bookcase/random, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses"; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"npt" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"npv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"npx" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/item/grown/bananapeel, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"npA" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/dark, +/obj/item/toy/figure/chemist{ + pixel_y = 37; + pixel_x = -11 + }, +/turf/open/floor/iron/dark/side, +/area/station/medical/break_room) +"npC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"npE" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"npG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"npI" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"npN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"npO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"npR" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Unfiltered & Air to Mix" + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"npV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"npX" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Virology Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"npZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/commons/fitness) +"nqb" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nqc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/vending/snackvend, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"nqg" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"nqh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/flag/nanotrasen/directional/east, +/turf/open/floor/iron/stairs/right{ + color = "#3d3e42" + }, +/area/station/maintenance/department/security) +"nqp" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nqy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/side, +/area/station/commons/locker) +"nqz" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"nqD" = ( +/obj/effect/decal/cleanable/vomit/nebula, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"nqG" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"nqM" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/lower) +"nqW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"nrh" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"nrn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro Staging" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nro" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/engineering/engine_smes) +"nrq" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"nrr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nrs" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"nru" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nrz" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/seed_extractor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass{ + icon_state = "grass2" + }, +/area/station/security/prison/garden) +"nrA" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"nrC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"nrG" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/small/dim/directional/east, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"nrH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"nrJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"nrR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nrX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"nsa" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/leavy/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/service) +"nsc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nsd" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"nsl" = ( +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"nsq" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/fore) +"nsu" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/medical/chem_storage) +"nsy" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"nsA" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/office) +"nsB" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"nsE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/det_wardrobe, +/obj/item/toy/figure/detective{ + pixel_x = 2; + pixel_y = 17 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"nsO" = ( +/obj/machinery/holopad, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"ntj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ntk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/execution/education) +"ntt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/chair/office/light, +/turf/open/floor/iron/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"ntw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"nty" = ( +/obj/structure/sign/warning/secure_area/directional/east, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"ntz" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "secure_pen" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/station/science/cytology) +"ntD" = ( +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"ntG" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Xenobiology Lab - Pen #3"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ntH" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/central) +"ntK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ntL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/maintenance/central) +"ntM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/chemistry) +"ntO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"ntQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/misc/asteroid/snow/coldroom, +/area/station/service/kitchen/coldroom) +"ntT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"nuc" = ( +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"nug" = ( +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/west{ + name = "Interrogation Intercom"; + frequency = 1423 + }, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = 11; + pixel_y = 3 + }, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"num" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nup" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"nuy" = ( +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) +"nuz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"nuC" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/kitchen) +"nuK" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"nuN" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"nuP" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"nuQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"nuR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -7 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 0; + pixel_x = 0 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"nuS" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/chair/stool/bar/directional{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"nva" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"nvd" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/structure/rack, +/obj/item/book/manual/wiki/infections{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"nvj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nvz" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/machinery/navbeacon{ + location = "S5-Command-Lobby"; + codes_txt = "patrol;next_patrol=S6-Command-Lobby" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nvD" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/semki/healthy, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"nvE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant11, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/holding_cell) +"nvN" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"nvO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nvT" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nvV" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"nvX" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/item/stock_parts/servo, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/matter_bin, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"nvY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"nvZ" = ( +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "QM #2" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"nwd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"nwj" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nwo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"nwu" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/aisat/exterior"; + name = "Zen Garden Turret Control"; + req_access = list("minisat"); + pixel_y = 27 + }, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"nwC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nwF" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/central) +"nwJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/item/ph_booklet{ + pixel_y = -12 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"nwU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"nwV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nxa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nxd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/cargo/storage) +"nxl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"nxr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/smooth_corner{ + dir = 4 + }, +/area/station/maintenance/port/aft) +"nxu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"nxv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nxz" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nxE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nxN" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"nxP" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/cargo/storage) +"nxQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/left/directional/north{ + name = "Containment Pen #6"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nxR" = ( +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"nym" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/effect/spawner/random/bureaucracy/paper, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"nyp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"nyt" = ( +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"nyA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"nyK" = ( +/obj/structure/table/optable, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"nyM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"nyU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"nza" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nzf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/brig/lower) +"nzi" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nzj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nzm" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"nzo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"nzp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"nzu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/space/openspace, +/area/space/nearstation) +"nzv" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/item/bikehorn/rubberducky/plasticducky, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"nzz" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nzF" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nzG" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"nzI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/service/chapel) +"nzK" = ( +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/vending/drugs, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"nzM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage/gas) +"nzN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/department/science) +"nzT" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"nAc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"nAd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/central) +"nAg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/hedge, +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"nAh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/prison) +"nAi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nAk" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"nAl" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"nAq" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"nAv" = ( +/obj/structure/sign/painting/large/library{ + dir = 8; + pixel_x = -29 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood/large, +/area/station/service/library) +"nAy" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/greenglow, +/obj/effect/spawner/random/trash/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"nAA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"nAK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/white/corner, +/area/station/service/kitchen) +"nAM" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"nAQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"nAX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood/wings{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/theater) +"nBd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/departments/xenobio/alt/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"nBl" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nBm" = ( +/obj/item/kirbyplants/random/dead, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"nBo" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/textured_large, +/area/station/maintenance/department/cargo) +"nBq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/button/door/directional/east{ + id = "commissaryshutter"; + name = "Commissary Shutter Control"; + pixel_y = -6 + }, +/obj/machinery/button/door/directional/east{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 6 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"nBt" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"nBv" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nBw" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white, +/area/station/science/lab) +"nBH" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"nBZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"nCp" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"nCv" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/structure/steam_vent, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"nCy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/storage) +"nCH" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"nCI" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nCK" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera/autoname/directional/south, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/eva) +"nCP" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/security/prison/workout) +"nCQ" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/bed/medical, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/central) +"nCR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"nCZ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"nDa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"nDf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"nDj" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/general/hidden, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"nDk" = ( +/obj/item/pipe_dispenser, +/obj/structure/table/reinforced, +/obj/item/multitool, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"nDl" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"nDm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass, +/obj/item/food/donut/choco{ + preserved_food = 1 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nDp" = ( +/obj/machinery/plate_press, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"nDt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"nDD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"nDE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nDN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"nDR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"nDS" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"nDY" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/pai_card{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"nEd" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"nEf" = ( +/obj/effect/turf_decal/trimline/purple/filled/shrink_ccw{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F15-Science"; + codes_txt = "patrol;next_patrol=F16-Science" + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"nEg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/official/fruit_bowl/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/champagne_cork/sabrage{ + pixel_y = 10; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"nEs" = ( +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nEv" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"nEz" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/medical) +"nEG" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Smoking Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"nEH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/stairs{ + dir = 8 + }, +/area/station/command/heads_quarters/cmo) +"nEQ" = ( +/turf/closed/wall/r_wall, +/area/station/security/medical) +"nET" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "secentranceflasher" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/scanner_gate/preset_guns, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"nEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nFi" = ( +/obj/structure/noticeboard/directional/south{ + pixel_y = -25 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"nFj" = ( +/obj/effect/turf_decal/tile/dark_red{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"nFm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"nFq" = ( +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"nFs" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig/lower) +"nFx" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid4" + }, +/area/space/nearstation) +"nFB" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"nFC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nFH" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/misc/grass, +/area/station/engineering/main) +"nFI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"nFJ" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nFP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"nFU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"nFV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"nGk" = ( +/obj/machinery/light/floor, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nGn" = ( +/obj/structure/flora/bush/grassy, +/obj/structure/flora/bush/flowers_pp, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_3, +/obj/structure/flora/tree/jungle/small/style_5, +/turf/open/floor/grass, +/area/station/service/chapel) +"nGH" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nGK" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/janitor) +"nGR" = ( +/obj/structure/hedge, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"nGS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/structure/railing{ + color = "#36373a" + }, +/obj/machinery/button/door/directional/west{ + id = "LDorm1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 6 + }, +/obj/machinery/button/curtain{ + pixel_y = -6; + pixel_x = -24; + id = "ldorm1"; + name = "Curtains" + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"nGV" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2O to Pure" + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos) +"nHa" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/cargo/lower) +"nHd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/mob/living/carbon/human/species/monkey/punpun, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/navbeacon{ + location = "P5-Bar"; + codes_txt = "patrol;next_patrol=P6-Service-Hallway" + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"nHe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/button/crematorium{ + id = "crematoriumchapel"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/chapel/funeral) +"nHf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"nHj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nHk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 6 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"nHv" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/theater) +"nHy" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nHB" = ( +/turf/closed/wall, +/area/station/medical/treatment_center) +"nHI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"nHJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "C2-Starboard-Central-Fw"; + codes_txt = "patrol;next_patrol=S1-Starboard-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nHK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "medsecprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/security/checkpoint/science) +"nHR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"nHW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nIa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"nId" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nIf" = ( +/obj/effect/turf_decal/box/white, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"nIk" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"nIq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"nIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"nIs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nIu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"nIA" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"nIC" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/grass/jungle/a/style_2, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"nIG" = ( +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"nIP" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Arcade Room" + }, +/obj/effect/turf_decal/trimline/white/warning, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"nIW" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"nJa" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nJb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nJc" = ( +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"nJe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"nJo" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"nJq" = ( +/obj/structure/hedge, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"nJy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/west{ + id = "Dorm5"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"nJA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"nJB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"nJG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant2, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"nJJ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"nJR" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"nJT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"nJU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"nJX" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"nKe" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"nKh" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"nKp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/checkpoint/science) +"nKs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nKw" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/structure/railing, +/obj/structure/closet/secure_closet/security/science, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"nKF" = ( +/obj/item/toy/katana{ + icon_state = "supermatter_sword" + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"nKG" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"nKJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"nKM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"nKP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"nKQ" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/command/nuke_storage) +"nKS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater) +"nLg" = ( +/obj/effect/decal/cleanable/ash/large, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"nLn" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"nLs" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nLx" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/sign/warning/chem_diamond/directional/west, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/medical/pharmacy) +"nLA" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"nLC" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/trimline/dark_blue/warning, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"nLD" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"nLJ" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"nLP" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"nLU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"nLV" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"nMd" = ( +/obj/structure/ladder, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/starboard/fore) +"nMe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/departments/science/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"nMg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nMh" = ( +/obj/structure/bonfire/prelit, +/obj/item/food/kebab, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nMm" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"nMv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nMA" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"nMF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"nMJ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nML" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"nMM" = ( +/obj/effect/spawner/random/trash/mess, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"nMR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nNc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Atmospherics Emergency Access" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"nNe" = ( +/turf/closed/wall, +/area/station/service/library/printer) +"nNf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"nNh" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "engielock"; + req_access = list("engineering"); + name = "Engineering Lockdown" + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"nNi" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"nNn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"nNr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/cargo/office) +"nNt" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Pen #6"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"nNx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nNy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"nNB" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"nNC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"nNE" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/white/smooth_edge, +/area/station/commons/fitness) +"nNH" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"nNK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"nNN" = ( +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/machinery/light/floor, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/bush/large/style_2, +/turf/open/floor/grass, +/area/station/medical/lower) +"nNO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"nNS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/visit) +"nNY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"nOj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"nOl" = ( +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"nOq" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nOw" = ( +/obj/structure/aquarium/prefilled, +/obj/structure/railing{ + dir = 6; + color = "#4874A2" + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"nOz" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"nOB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"nOX" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/structure/reagent_dispensers/plumbed, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"nOY" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"nOZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"nPe" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"nPn" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"nPx" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"nPA" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"nPC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nPJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nPK" = ( +/obj/machinery/status_display/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"nPL" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"nPN" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"nPO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"nPP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"nPV" = ( +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nPY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"nQc" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nQd" = ( +/obj/effect/turf_decal/box, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"nQe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"nQh" = ( +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nQj" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/item/clothing/under/misc/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"nQk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/cafeteria) +"nQo" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nQp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/style_3, +/obj/structure/flora/grass/jungle/b/style_2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nQq" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/security/cell/left/directional/north{ + id = "Cell 1"; + name = "Cell 1" + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/brig) +"nQC" = ( +/obj/structure/chair/comfy/black, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, +/area/station/maintenance/port/aft) +"nQD" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/chapel, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"nQG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"nQI" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"nQO" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"nQR" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_x = -32 + }, +/obj/structure/flora/rock/style_2, +/obj/item/flashlight/lantern{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/stone, +/area/station/ai_monitored/aisat/exterior) +"nQT" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/box, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"nRd" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/mirror/directional/north, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"nRm" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"nRn" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/small, +/area/station/medical/patients_rooms) +"nRp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nRt" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"nRx" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Cargo Bay Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"nRA" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"nRD" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"nRE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Civil Rad Shelter" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"nRG" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nRL" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/bottle/champagne{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 1; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"nSg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nSh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"nSi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"nSk" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"nSu" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"nSz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/sign/poster/official/moth_piping/directional/west, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"nSB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nSE" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"nSG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"nSH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"nSO" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"nST" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "EVA Airlock" + }, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"nSV" = ( +/obj/structure/railing, +/obj/item/shell/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/babel_device/directional/west, +/turf/open/floor/circuit/green, +/area/station/maintenance/starboard/fore) +"nSZ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"nTb" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"nTe" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"nTm" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/commons/dorms) +"nTz" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"nTF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"nTH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"nTJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"nTS" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/snow/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/rock/icy/style_3, +/obj/structure/flora/bush/snow/style_3, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"nTT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/processing) +"nTX" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/medical/virology) +"nTZ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"nUa" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"nUb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nUi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"nUp" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nUu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"nUx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/door/airlock/wood/glass{ + name = "Sauna" + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/sauna) +"nUA" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"nUM" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"nUP" = ( +/obj/machinery/door/airlock/public{ + name = "Laser Tag" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"nUY" = ( +/obj/structure/flora/bush/pale/style_random, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/machinery/light/floor, +/obj/structure/flora/bush/large/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"nVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"nVi" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/port) +"nVq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"nVw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/bait_can/worm, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"nVx" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"nVE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera/autoname/directional/east{ + dir = 6; + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"nVH" = ( +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"nVK" = ( +/turf/closed/wall/r_wall, +/area/station/security/warden) +"nVN" = ( +/turf/closed/wall, +/area/station/service/barber) +"nVO" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/blue, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/medical) +"nVS" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nWh" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"nWj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"nWl" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/structure/bedsheetbin/empty, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"nWn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) +"nWu" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"nWw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"nWy" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"nWz" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/warden) +"nWA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Arcade Room" + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"nWG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"nWI" = ( +/obj/item/reagent_containers/cup/glass/trophy{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"nWK" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/science) +"nWM" = ( +/obj/machinery/modular_computer/preset/id, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"nWO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"nWT" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/structure/table/glass, +/obj/item/clothing/shoes/sandal{ + pixel_y = -3 + }, +/obj/item/clothing/shoes/sandal{ + pixel_y = 4 + }, +/obj/item/clothing/shoes/sandal{ + pixel_y = 11 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"nWX" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"nXf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"nXi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nXo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/small/directional/east, +/obj/structure/training_machine, +/obj/item/target, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"nXt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/port) +"nXA" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"nXE" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"nXH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"nXS" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4; + initialize_directions = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"nXU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"nXX" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"nXY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"nYc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"nYi" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"nYn" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"nYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/stairs/left{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"nYF" = ( +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"nYG" = ( +/obj/structure/sign/gym{ + pixel_y = 32 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/security/prison/workout) +"nYJ" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"nYK" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"nYL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"nYM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/folder, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"nYQ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"nYT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"nYX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"nZb" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/style_2, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"nZh" = ( +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"nZj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos) +"nZq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/book/bible, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"nZu" = ( +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/funeral) +"nZB" = ( +/obj/structure/cable, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"nZD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 1 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/department/cargo) +"nZL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"nZO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/plumbing/input{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "secure_pen"; + name = "Secure Pen Shutters Control"; + req_access = list("xenobiology") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"oaf" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"oal" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos/project) +"oap" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/box/red/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"oaq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"oay" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"oaE" = ( +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oaI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"oaJ" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/chair/stool/bar/directional, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"oaX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"oaZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"oba" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/aft) +"obc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"obe" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"obj" = ( +/obj/effect/turf_decal/trimline/white/warning, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"obk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"obp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"obv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"obB" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"obK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Atmospherics Junction" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"obO" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"obU" = ( +/obj/item/chisel, +/obj/item/storage/toolbox/artistic, +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"obV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"obY" = ( +/obj/item/food/pie/cream, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/obj/structure/table/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 + }, +/area/station/security/prison) +"obZ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/radio/intercom/directional/west, +/obj/structure/filingcabinet, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"oca" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"occ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/lower) +"ocd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"oce" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"ocg" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/item/toy/plush/beeplushie, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"ocp" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"oct" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/structure/sign/poster/official/help_others/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"ocC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"ocH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ocJ" = ( +/obj/effect/spawner/random/medical/medkit, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"ocN" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/command) +"ocO" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"ocP" = ( +/obj/structure/fluff/paper/stack{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/port/aft) +"ocQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/flashlight/lamp{ + pixel_y = 11; + pixel_x = -32 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"ocR" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"ocS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"ocT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"ocV" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ocW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/glass, +/obj/item/newspaper{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/machinery/light/small/red/dim/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"odb" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"odc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"odd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"odi" = ( +/obj/effect/decal/cleanable/rubble, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid3" + }, +/area/space/nearstation) +"odj" = ( +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"odl" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"odr" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/port) +"ods" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/commons/dorms) +"odt" = ( +/obj/machinery/button/door/directional/west{ + name = "Genetics Shutters Control"; + req_access = list("genetics"); + pixel_y = 6; + id = "rdgene" + }, +/obj/structure/railing, +/obj/machinery/button/door/directional/west{ + pixel_y = -6; + name = "Secondary Genetics Shutters Control"; + id = "rdgene2"; + req_access = list("genetics") + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -34; + pixel_y = 0 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/science/genetics) +"odu" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/ants, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"ody" = ( +/turf/open/floor/carpet/red, +/area/station/service/boutique) +"odE" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/eva) +"odU" = ( +/obj/effect/decal/cleanable/confetti, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"odV" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"odX" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"odY" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"odZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"oej" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"oep" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"oet" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + name = "Security Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/information, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"oeu" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 17; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = -13; + pixel_y = 6 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/smooth_half, +/area/station/maintenance/department/bridge) +"oeG" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/brig/lower) +"oeI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/trimline/dark, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/gloves/color/black, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"oeK" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"oeQ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/ce) +"oeU" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"oeW" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/contraband/atmosia_independence/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"ofc" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"ofd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ofh" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass, +/area/station/service/library/upper) +"ofj" = ( +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"ofk" = ( +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/delivery_chute{ + dir = 8; + pixel_x = 2 + }, +/obj/machinery/door/window/right/directional/west{ + req_access = list("shipping"); + name = "Crate Security Door" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"ofq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central) +"oft" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ofv" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + req_access = list("brig") + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig) +"ofB" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/service/library/upper) +"ofC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ofE" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/hedge, +/obj/machinery/incident_display/delam/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/computer/security/telescreen/ce/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ofI" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"ofO" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P1-Port-Hallway"; + codes_txt = "patrol;next_patrol=P2-Port-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"ofT" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/leavy/style_2, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/service/library/upper) +"ogc" = ( +/obj/structure/fireplace{ + dir = 8; + pixel_x = -24; + pixel_y = 15 + }, +/obj/structure/sign/calendar/directional/east, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant18, +/turf/open/floor/stone, +/area/station/hallway/secondary/service) +"ogf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"ogh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"ogl" = ( +/obj/structure/fluff/paper, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/table/wood/fancy, +/obj/item/paint_palette, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ogq" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/smartfridge/food, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"ogr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"ogx" = ( +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"ogy" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/stack/sheet/iron, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"ogz" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"ogB" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"ogE" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ogG" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"ogO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"ogR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"ogS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"ogW" = ( +/obj/structure/chair/sofa/bench/left, +/obj/effect/landmark/start/assistant, +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness/recreation) +"ohh" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/soft/red, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","bar") + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"ohl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ohp" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"ohq" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/security/courtroom) +"ohv" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/tank_holder/extinguisher, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"ohw" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"ohG" = ( +/obj/structure/training_machine, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/item/target/syndicate, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/range) +"ohH" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"ohT" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/dice, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/breakroom) +"ohU" = ( +/obj/item/stack/rods/two, +/turf/open/space/openspace, +/area/space/nearstation) +"oia" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Testing Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oib" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oic" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"oid" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"oih" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"oil" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/laser_gun, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"oit" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/sign/departments/aisat/directional/south, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/command) +"oiB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"oiG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/structure/sign/clock/directional/north, +/obj/item/dice/d20, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd","medbay") + }, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"oiJ" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"oiM" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/caution/white{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/janitor) +"oiQ" = ( +/obj/structure/table/wood, +/obj/item/hourglass, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"oiR" = ( +/obj/structure/flora/grass/green/style_2, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/rock/icy/style_2, +/obj/structure/flora/bush/snow/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"oiS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/red, +/area/station/service/library) +"oiT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"oiZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"oje" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"ojj" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"ojl" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen/directional/south{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ojm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/item/stack/sheet/plasteel{ + amount = 15; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/west, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 4 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 4 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"ojs" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/service/library/lounge) +"ojw" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ojx" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"ojz" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/breakroom) +"ojB" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ojC" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"ojD" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/event_spawn, +/obj/machinery/duct, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"ojN" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ojS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"okb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant2, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"okj" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"okp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"okv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"okx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"okz" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"okA" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"okE" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/turf/open/floor/grass, +/area/station/maintenance/starboard/central) +"okM" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"okP" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"okQ" = ( +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"okR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/hfr_room) +"okU" = ( +/obj/structure/broken_flooring/pile/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"okV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"okW" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"okY" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"ola" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/secure_safe/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"olb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"olj" = ( +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_y = 37; + pixel_x = 11 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/stone, +/area/station/commons/dorms) +"oln" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "radiobolt"; + name = "Radio Station" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"olu" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/iron/solarpanel/airless, +/area/station/solars/port/fore) +"olz" = ( +/obj/effect/spawner/random/structure/closet_empty, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"olA" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"olD" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"olJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/commons/dorms) +"olL" = ( +/obj/machinery/door/poddoor{ + id = "cargunload"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"olR" = ( +/obj/machinery/pdapainter/supply, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"olS" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"olT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"olY" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/surgery/theatre) +"ome" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"omo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/science/circuits) +"omy" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/glass/reinforced/plasma/airless, +/area/space/nearstation) +"omz" = ( +/obj/effect/turf_decal/siding/dark_red, +/obj/structure/bed/medical{ + dir = 8 + }, +/obj/item/clothing/suit/jacket/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"omB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"omE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/server) +"omF" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"omI" = ( +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"omK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"omP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"omT" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"omY" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/chapel) +"onc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/bush/jungle/a/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"onh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"onm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"onn" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"onp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"ons" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/fluff/beach_umbrella/cap, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"onB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light_switch/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"onF" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + name = "Pool Shutters"; + id = "Pool" + }, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation/pool) +"onN" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"onX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/central) +"onZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/orange, +/area/station/engineering/break_room) +"oob" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/flora/rock/pile/icy/style_2, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/command/heads_quarters/rd) +"ooc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/duct, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"ood" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ooi" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/service/library/upper) +"ooj" = ( +/obj/item/kirbyplants/organic/plant18, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"ook" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"oon" = ( +/obj/machinery/griddle, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"oor" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/siding/purple, +/obj/structure/sign/departments/xenobio/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"ooz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west{ + network = list("minisat") + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet/blue, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"ooA" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ooC" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ooF" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ooG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/central) +"ooJ" = ( +/obj/item/food/grown/harebell, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ooN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"ooW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"opa" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fishstore"; + name = "Fish Store Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"opd" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass, +/area/station/service/kitchen/diner) +"ope" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"opo" = ( +/turf/closed/wall/r_wall, +/area/station/security/processing) +"opt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"opu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"opw" = ( +/obj/machinery/holopad, +/obj/effect/landmark/navigate_destination/hydro, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"opA" = ( +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"opE" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"opF" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"opJ" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"opN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/bronze, +/turf/open/space/openspace, +/area/space/nearstation) +"opR" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"opT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"opY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"oqb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oqi" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/tank/internals/oxygen{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/tank/internals/oxygen, +/obj/item/radio{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/radio, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"oqk" = ( +/obj/structure/sign/warning/secure_area/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"oqm" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oqn" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"oqp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"oqq" = ( +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"oqu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/chapel/funeral) +"oqy" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"oqE" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"oqF" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/engineering/engine_smes) +"oqS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"oqX" = ( +/obj/structure/rack, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"ord" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"ork" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"orn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/airlock/public{ + name = "Laser Tag" + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"ort" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"oru" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/directional/north{ + name = "Shutters Control"; + id = "maintwindows2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"orB" = ( +/obj/item/clothing/head/utility/hardhat/welding, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"orD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/commons/dorms) +"orE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Mix" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"orI" = ( +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"orQ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"orS" = ( +/obj/structure/stairs/west, +/turf/open/floor/iron/white, +/area/station/science/lower) +"osd" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/caution/white{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/textured_edge{ + dir = 4 + }, +/area/station/medical/surgery/theatre) +"ose" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"osi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"osL" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"osM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"osO" = ( +/obj/structure/chair/sofa/bench/solo, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/research) +"osQ" = ( +/obj/structure/table, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/effect/spawner/random/bureaucracy/pen, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"osR" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/fore) +"osS" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"osT" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/white/textured, +/area/station/maintenance/fore/lesser) +"osZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/cargo/storage) +"otc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/fireaxecabinet/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"otd" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"oth" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"oti" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron_white, +/area/station/hallway/primary/fore) +"otm" = ( +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"otn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"oto" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner{ + dir = 2; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant4{ + pixel_y = 16 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"otw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"otz" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"otJ" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig) +"otK" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig{ + id = "cargocell"; + name = "Cargo Cell locker" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"otN" = ( +/obj/effect/spawner/random/trash/garbage, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"otO" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"otP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "maintwindows" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"otV" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"otW" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ouf" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"ouj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/purple, +/area/station/science/breakroom) +"ouk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oum" = ( +/turf/open/floor/circuit, +/area/station/engineering/gravity_generator) +"ouq" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"oux" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/wood/large, +/area/station/service/library) +"ouC" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"ouR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"ouZ" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small/red/dim/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"ovc" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Post - Medbay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"ovj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port) +"ovk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/structure/chair/comfy/beige, +/turf/open/floor/iron/dark/textured_corner, +/area/station/hallway/secondary/command) +"ovl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"ovo" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"ovq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/side, +/area/station/commons/locker) +"ovx" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"ovy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"ovA" = ( +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/ladder, +/turf/open/floor/iron/smooth_corner{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"ovB" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/cargo/mining_breakroom) +"ovC" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"ovI" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"ovP" = ( +/obj/effect/decal/cleanable/plasma, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"ovQ" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop, +/obj/machinery/vending/wallmed/directional/north, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/white, +/area/station/security/medical) +"ovR" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"ovT" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"owb" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"owc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"owf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"owm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"owu" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"owv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/central) +"owy" = ( +/obj/structure/cable, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"owD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"owE" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"owH" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/razor{ + pixel_x = -3 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"owM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"owS" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"owZ" = ( +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oxd" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/obj/structure/chem_separator{ + pixel_y = 12 + }, +/obj/structure/chem_separator{ + pixel_y = 12; + icon_state = "separator_beaker" + }, +/turf/open/floor/iron/smooth_edge, +/area/station/maintenance/department/bridge) +"oxh" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"oxi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oxj" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oxo" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small/directional/east, +/obj/machinery/button/door/directional/west{ + id = "ToiletB"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"oxp" = ( +/obj/machinery/telecomms/server/presets/security, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"oxq" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/controller{ + pixel_y = 3; + pixel_x = 7 + }, +/obj/item/compact_remote{ + pixel_y = 4; + pixel_x = -7 + }, +/obj/item/compact_remote{ + pixel_y = 4; + pixel_x = -13 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"oxv" = ( +/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"oxB" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom/command, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"oxC" = ( +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"oxJ" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/door/window/right/directional/south{ + name = "Desk Access"; + req_access = list("library") + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"oxL" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"oxS" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/machinery/firealarm/directional/east, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/service) +"oyb" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"oye" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/security/prison) +"oyi" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/fore) +"oyk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot_white, +/obj/structure/chair, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"oyl" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/trimline/red, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/detectiveboard/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"oyn" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"oyp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"oyr" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"oyK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"oyQ" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"oyR" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/port) +"oyT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/hydroponics) +"oza" = ( +/obj/item/pillow{ + pixel_x = -7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"ozf" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"ozs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin/tagger, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"ozv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/security/holding_cell) +"ozE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ozF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark, +/area/station/command) +"ozG" = ( +/obj/structure/sign/clock/directional/east, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"ozJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"ozQ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"ozR" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/command) +"ozZ" = ( +/obj/structure/sign/poster/random/directional/west, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oAc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "main_surgery" + }, +/turf/open/floor/plating, +/area/station/medical/surgery/theatre) +"oAe" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"oAs" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"oAA" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/wrench, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"oAN" = ( +/obj/machinery/computer/records/medical{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/medical/surgery/theatre) +"oAO" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/command/heads_quarters/hos) +"oAV" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/service/library/upper) +"oAX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/backpack/mime{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/clothing/mask/gas/mime{ + pixel_x = 6 + }, +/obj/item/toy/crayon/mime{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/structure/mirror/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"oBb" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness) +"oBm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"oBq" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"oBt" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"oBu" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/machinery/door/window/right/directional/west{ + req_access = list("medical"); + name = "Reception Desk" + }, +/obj/machinery/door/firedoor, +/obj/structure/window/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"oBJ" = ( +/obj/structure/sign/painting/large/library{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"oBL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oBM" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/corner, +/area/station/maintenance/starboard/central) +"oBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/brig) +"oBW" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"oCb" = ( +/obj/structure/table/wood, +/obj/item/food/ready_donk{ + pixel_y = 13; + pixel_x = 32 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 17; + pixel_x = 7 + }, +/obj/structure/sign/picture_frame/showroom/two{ + pixel_y = 32 + }, +/obj/machinery/microwave, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"oCd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/cargo/office) +"oCi" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/station/medical/virology) +"oCm" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/scientist, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"oCs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"oCv" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/bot_red, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"oCy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"oCB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"oCC" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"oCE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"oCI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"oCJ" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 3"; + id_tag = "Cell3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"oCK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"oCL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"oCO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"oCQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"oDb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oDc" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/flora/grass/jungle/b/style_5, +/turf/open/water, +/area/station/ai_monitored/aisat/exterior) +"oDe" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/red, +/obj/machinery/smartfridge/food, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"oDu" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"oDB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"oDI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"oDN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Customs Desk"; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"oDQ" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oDV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"oDW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"oDY" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oDZ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/sorting) +"oEa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oEd" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/brig/lower) +"oEj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/greenglow, +/obj/item/clothing/head/cone{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/clothing/head/cone{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"oEn" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness/recreation) +"oEt" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"oEB" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/item/kirbyplants/organic/plant2, +/obj/structure/sign/poster/official/moth_epi/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_b) +"oEJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"oEQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"oER" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/landmark/navigate_destination/research, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"oEU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Engine" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oEX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"oFa" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oFl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/stool/bar/directional, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"oFB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"oFC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/analyzer, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/plant_analyzer, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"oFG" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/potato, +/obj/item/seeds/tomato, +/obj/item/seeds/carrot, +/obj/item/seeds/grass, +/obj/item/seeds/ambrosia, +/obj/item/seeds/wheat, +/obj/item/seeds/pumpkin, +/obj/effect/spawner/random/contraband/prison, +/obj/item/seeds/tower, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"oFO" = ( +/obj/structure/chair/sofa/bamboo{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"oFR" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oFY" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron, +/area/station/cargo/storage) +"oGc" = ( +/obj/effect/turf_decal/trimline/white/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/security/prison) +"oGh" = ( +/obj/structure/barricade/sandbags{ + color = "#0095ff" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"oGi" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/breakroom) +"oGo" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"oGq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/door/window/left/directional/south{ + name = "Coffin Storage"; + req_access = list("chapel_office") + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"oGt" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"oGA" = ( +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"oGG" = ( +/obj/structure/table, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/button/door/directional/south{ + id = "rdordnance"; + name = "Ordnance Containment Control"; + req_access = list("ordnance") + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"oGH" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/turf/open/floor/iron/white, +/area/station/science/circuits) +"oGL" = ( +/obj/effect/spawner/random/exotic, +/obj/effect/decal/cleanable/food/plant_smudge, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"oGN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"oGO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"oGW" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + location = "Research" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"oGY" = ( +/obj/structure/stairs/east{ + color = "#3d3e42" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"oHf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) +"oHh" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oHo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"oHp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/garbage, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"oHy" = ( +/obj/structure/flora/bush/flowers_yw/style_2, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid5" + }, +/area/space/nearstation) +"oHF" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"oHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"oHS" = ( +/obj/machinery/computer/warrant{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"oHV" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"oHX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"oIc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"oIg" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"oIq" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"oIr" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/computer/monitor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"oIM" = ( +/obj/item/pizzabox, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oIN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"oIO" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"oIU" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"oIV" = ( +/obj/structure/sign/warning/directional/north, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/item/clothing/head/cone{ + pixel_x = 0; + pixel_y = -4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oIX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"oJb" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"oJd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"oJm" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"oJn" = ( +/obj/structure/altar_of_gods, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/book/bible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"oJp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"oJr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"oJs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"oJw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"oJG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"oJI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oJL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = 0; + pixel_y = 17 + }, +/obj/item/pen{ + pixel_x = 0; + pixel_y = 17 + }, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"oJR" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"oJS" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/breakroom) +"oJV" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/rock/pile/jungle/style_2, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"oJW" = ( +/obj/machinery/door/airlock{ + name = "Fitness Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/workout) +"oJY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/locker) +"oJZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"oKc" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig) +"oKg" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/effect/spawner/random/contraband/permabrig_weapon, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"oKi" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"oKm" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"oKs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/aft/greater) +"oKw" = ( +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oKC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics) +"oKJ" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"oKL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/sign/departments/restroom/directional/east, +/obj/structure/cable, +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/dorms) +"oKM" = ( +/obj/structure/closet/crate/grave, +/obj/item/clothing/head/collectable/hop, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"oKN" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/duct, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"oKP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"oKU" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"oKV" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/newscaster/directional/east, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"oKZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oLd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"oLf" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"oLi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"oLp" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oLq" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"oLr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"oLu" = ( +/turf/open/floor/iron/stairs/right{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/library/upper) +"oLx" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"oLB" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/spawner/random/engineering/toolbox, +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/central) +"oLD" = ( +/obj/machinery/fishing_portal_generator, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"oLE" = ( +/obj/structure/table, +/obj/item/storage/briefcase{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/storage/wallet, +/obj/item/storage/wallet{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"oLI" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/breakroom) +"oLK" = ( +/obj/machinery/chem_dispenser, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"oLT" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"oLZ" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/engineering/supermatter/room/upper) +"oMh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"oMi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage) +"oMj" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"oMn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/station/service/library) +"oMx" = ( +/obj/structure/table/glass, +/obj/machinery/computer/records/medical/laptop{ + dir = 4; + pixel_y = 3; + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"oMF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"oMK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"oMO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/locker) +"oMQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"oMR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/obj/structure/hedge, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"oMY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","bar") + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"oNc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"oNf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/lime, +/turf/open/space/openspace, +/area/space/nearstation) +"oNq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"oNx" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/brig{ + id = "medcell"; + name = "Medical Cell Locker" + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"oNz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/sign/flag/nanotrasen/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"oNA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison/safe) +"oNB" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"oNT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"oNW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"oNY" = ( +/obj/structure/flora/grass/green/style_2, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"oOa" = ( +/obj/structure/sign/departments/botany/botany/alt3{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"oOb" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oOc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"oOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"oOi" = ( +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plastic, +/area/station/security/prison/work) +"oOr" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/cargo/bitrunning/den) +"oOt" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"oOu" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/cargo) +"oOw" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oOz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/science/circuits) +"oOA" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oOK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"oOO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/digital_clock/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"oOS" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"oOT" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"oOX" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/ai_module/supplied/freeform, +/obj/item/ai_module/reset{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"oOZ" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/spawner/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oPj" = ( +/obj/item/knife/butcher, +/obj/item/crowbar/hammer, +/obj/item/melee/baseball_bat/ablative, +/obj/item/hatchet/wooden, +/obj/item/wrench/caravan, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/lead_pipe, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"oPt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oPA" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_y = -3 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/medical/pharmacy) +"oPF" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/sign/xenobio_guide/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oPH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"oPI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 26; + pixel_y = -6 + }, +/obj/machinery/firealarm/directional/east{ + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"oPJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"oPN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oPP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"oPR" = ( +/obj/structure/broken_flooring/singular/directional/east, +/obj/structure/table/wood, +/obj/item/stack/arcadeticket, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/structure/sign/clock/directional/north, +/obj/item/reagent_containers/cup/glass/coffee/no_lid{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/wrapping, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oPS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/west{ + id = "LDorm2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 6 + }, +/obj/machinery/button/curtain{ + pixel_y = -6; + pixel_x = -24; + id = "ldorm2"; + name = "Curtains" + }, +/obj/structure/railing{ + color = "#36373a"; + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"oPU" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"oPY" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/tram/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/tram/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"oQa" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Server Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/turf/open/floor/iron/dark, +/area/station/science/server) +"oQc" = ( +/obj/machinery/computer/prisoner/management{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"oQe" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Entrance Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oQi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/waffle_corp_rifles/directional/west, +/obj/item/trash/can/food/jellyfish{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port/aft) +"oQj" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"oQl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"oQo" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"oQq" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/commons/dorms) +"oQs" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig/lower) +"oQt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"oQy" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"oQA" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/dark, +/area/station/security/brig/lower) +"oQB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oQE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"oQI" = ( +/obj/machinery/holopad/secure, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/command/corporate_suite) +"oQJ" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"oQL" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"oQQ" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"oQT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oRc" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/brig) +"oRg" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/style_2, +/obj/structure/marker_beacon/lime, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"oRh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/right, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"oRi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"oRl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/service/kitchen) +"oRm" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/no_nightlight/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"oRq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + id_tag = "cargooffice"; + name = "Deliveries" + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"oRD" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"oRE" = ( +/obj/structure/sign/departments/court/directional/north, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"oRP" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"oRQ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"oRX" = ( +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"oRZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/ordnance) +"oSc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/breakroom) +"oSe" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"oSf" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"oSh" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/prison/directional/south, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"oSj" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"oSl" = ( +/obj/machinery/modular_computer/preset/engineering{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"oSm" = ( +/obj/structure/chair/stool/bar/directional/north{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oSq" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"oSs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/weldingtool, +/obj/item/clothing/glasses/welding, +/obj/structure/sign/calendar/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/mechbay) +"oSu" = ( +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"oSy" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/service/library/lounge) +"oSD" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"oSH" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/commons/dorms) +"oSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"oSP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/stone, +/area/station/ai_monitored/aisat/exterior) +"oSQ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"oSW" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oSZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood/wings, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"oTb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oTg" = ( +/obj/machinery/requests_console/directional/south{ + department = "Hydroponics"; + name = "Hydroponics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/light/no_nightlight/directional/south, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"oTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/commons/dorms) +"oTs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"oTx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/iron, +/area/station/commons/dorms) +"oTz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"oTA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"oTF" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"oTH" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"oTJ" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"oTL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"oTQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"oTR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/processing) +"oUh" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"oUk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oUv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"oUw" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"oUB" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"oUH" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 8 + }, +/obj/structure/chair/stool/bamboo{ + pixel_y = 16 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"oUL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"oUN" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/mid_joiner, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"oUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"oUR" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"oUY" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"oVa" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"oVb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"oVj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"oVl" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"oVn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"oVo" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"oVq" = ( +/obj/structure/hedge, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/marker_beacon/lime, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"oVs" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "main_surgery"; + name = "Privacy Shutters Control"; + req_access = list("surgery"); + pixel_x = -56; + pixel_y = 6 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"oVD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"oVF" = ( +/obj/machinery/holopad, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"oVJ" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"oVK" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/commons/fitness) +"oVN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/contraband/cc64k_ad/directional/north, +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/iron/textured_corner, +/area/station/hallway/primary/aft) +"oVP" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/fore/lesser) +"oVU" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp/green{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/desk_bell{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/hallway/secondary/command) +"oWa" = ( +/turf/closed/wall, +/area/station/science/robotics/lab) +"oWc" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Cabin 3" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"oWk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"oWn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"oWp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"oWu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/security/breakroom) +"oWD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"oWE" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/fullgrass, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"oWL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"oWP" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/cult_turf, +/obj/effect/spawner/random/trash/graffiti, +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"oWS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"oWT" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot_white, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"oWX" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/aft) +"oXh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"oXi" = ( +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/window/spawner/directional/west{ + color = "#9d1a1a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"oXu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/library) +"oXv" = ( +/obj/structure/cable, +/obj/item/clothing/head/utility/hardhat{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"oXF" = ( +/obj/structure/table/bronze, +/obj/item/newspaper{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"oXM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"oXS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"oXV" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/calendar/directional/south, +/obj/effect/spawner/random/trash/soap, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"oYd" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"oYg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"oYr" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"oYu" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 28 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"oYx" = ( +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"oYz" = ( +/obj/machinery/computer/shuttle/mining/common, +/obj/structure/cable, +/obj/item/toy/figure/dsquad{ + pixel_y = 17; + pixel_x = 7 + }, +/obj/item/clothing/glasses/psych{ + pixel_y = -4; + pixel_x = -1 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"oYA" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/computer_disk/medical, +/obj/machinery/requests_console/directional/south{ + department = "Chief Medical Officer's Desk"; + name = "Chief Medical Officer's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"oYN" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 9 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"oYP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"oYW" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/atmos/storage) +"oYX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"oYY" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"oZb" = ( +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"oZg" = ( +/mob/living/basic/bot/cleanbot, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"oZj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"oZp" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"oZr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"oZw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"oZx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"oZy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/rock/style_4, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"oZz" = ( +/obj/structure/punching_bag, +/obj/structure/sign/calendar/directional/north, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"oZB" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) +"oZI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"oZK" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"oZM" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/qm) +"oZN" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"oZP" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/toilet{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = -9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"oZR" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"oZS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/storage) +"oZV" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/chair, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"pae" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitory Maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/commons/toilet/restrooms) +"paq" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"pat" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/taperecorder, +/obj/item/tape, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"pau" = ( +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/storage) +"paw" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/security/execution/transfer) +"pay" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"paF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"paG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"paH" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"paI" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/execution/education) +"paJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Elevator"; + elevator_mode = 1; + transport_linked_id = "SecElevator" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig/lower) +"paK" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"pbb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/holopad/secure, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"pbd" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pbi" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"pbo" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"pbs" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"pbu" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"pbw" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"pbz" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"pbF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"pbP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"pbR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"pbZ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/white/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 1 + }, +/area/station/service/kitchen) +"pce" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"pcf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/qm) +"pcg" = ( +/obj/structure/cable, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pck" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"pcq" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"pcw" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"pcx" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer/light{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"pcz" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"pcB" = ( +/obj/effect/turf_decal/tile/yellow/opposingcorners, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pcG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/tile/dark_green/tram{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"pcI" = ( +/obj/structure/cable, +/obj/effect/spawner/random/entertainment/cigarette, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"pcM" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"pcN" = ( +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pcR" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"pcS" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/glass/reinforced, +/area/station/command) +"pdg" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"pdl" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pdm" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/transfer) +"pdn" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/rack, +/obj/item/training_toolbox, +/obj/item/training_toolbox, +/obj/structure/sign/poster/contraband/free_key/directional/north, +/obj/item/melee/baseball_bat, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"pdz" = ( +/obj/structure/chair/wood/wings, +/obj/structure/fluff/paper/stack{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pdD" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"pdE" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/central) +"pdF" = ( +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/item/toy/seashell, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"pdG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pdH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"pdK" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"pdM" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"pdQ" = ( +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Zen Garden" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor/shutters{ + name = "Zen Garden Shutters"; + id = "AIgarden2" + }, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"pdW" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"pdX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/bush/jungle/b/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pdZ" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"pef" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/mob/living/basic/bot/medbot/autopatrol, +/obj/machinery/navbeacon{ + location = "F5-Medbay-Lobby"; + codes_txt = "patrol;next_patrol=F6-Medbay" + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"pel" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"pem" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/captain) +"per" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"peB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/science/server) +"peC" = ( +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/large, +/area/station/service/theater) +"peG" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"peJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/purple, +/turf/open/space/openspace, +/area/space/nearstation) +"peL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"peM" = ( +/turf/closed/wall, +/area/station/commons/toilet/shower) +"peS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"peU" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + desc = "Takes you to a whole new level of thinking."; + name = "Meta-Cider" + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"peX" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"pfe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"pfg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"pfi" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"pfk" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) +"pfp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"pfr" = ( +/obj/structure/reflector/double/anchored{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"pft" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"pfv" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"pfA" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + location = "F13-Science"; + codes_txt = "patrol;next_patrol=F14-Science-Lobby" + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pfB" = ( +/turf/closed/wall, +/area/station/engineering/storage/tech) +"pfD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"pfE" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"pfH" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"pfY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"pge" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/official/safety_internals/directional/east, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"pgg" = ( +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Atmospherics"; + name = "Atmospherics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"pgi" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/structure/closet/crate/medical, +/obj/structure/railing, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/medical/memeorgans, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"pgk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bed/pod{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/item/pillow/random, +/obj/effect/spawner/random/bedsheet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"pgm" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"pgq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"pgD" = ( +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"pgI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"pgL" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/fore/lesser) +"pgM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/pumproom) +"pgS" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/gravity_generator) +"pha" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/vending/cart, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/primary/fore) +"phb" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/turf/open/floor/plating, +/area/station/service/kitchen/diner) +"phe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/prison/visit) +"phk" = ( +/obj/machinery/door/airlock/command{ + name = "Command Break Room" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"php" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid1" + }, +/area/space/nearstation) +"phC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"phN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/hedge, +/obj/machinery/airalarm/directional/west, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"phR" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"phV" = ( +/obj/structure/broken_flooring/singular/always_floorplane/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"phX" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"pif" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/construction/mining/aux_base) +"pig" = ( +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"pih" = ( +/turf/closed/wall, +/area/station/maintenance/aft/greater) +"pii" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -5; + pixel_y = -18 + }, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/command) +"pil" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/station/cargo/sorting) +"pim" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"pir" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"piB" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"piC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"piI" = ( +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/north, +/obj/item/trash/candle, +/obj/item/flashlight/flare/candle{ + pixel_x = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/bamboo, +/area/station/maintenance/starboard/central) +"piJ" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"piN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"piO" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"piV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"piW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"piX" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"pjd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"pjg" = ( +/obj/machinery/door/window/brigdoor/right/directional/south, +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/science/ordnance/storage) +"pjm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"pjr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"pjt" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/cargo/lower) +"pju" = ( +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/white, +/area/station/medical/surgery/theatre) +"pjJ" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"pjO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pjP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pjY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/noticeboard/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/borg/upgrade/rename{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"pkd" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"pkf" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"pkj" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"pkl" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid2" + }, +/area/space/nearstation) +"pkx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pkz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/prison) +"pkG" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"pkJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/project) +"pkL" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pkO" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"pkS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pkT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/bush/sunny/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"plc" = ( +/obj/machinery/exoscanner, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/circuit/airless, +/area/station/cargo/drone_bay) +"ple" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"plh" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"pll" = ( +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/disposal/incinerator) +"plo" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"plp" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 3 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"plr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"plA" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"plC" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"plD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"plG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"plJ" = ( +/obj/effect/turf_decal/siding/corner, +/obj/structure/filingcabinet/medical, +/obj/machinery/airalarm/directional/north, +/obj/machinery/button/door/directional/west{ + id = "medbay"; + name = "Medbay Lockdown"; + pixel_y = 6; + req_access = list("medical") + }, +/obj/item/toy/figure/paramedic{ + pixel_y = 16; + pixel_x = -1 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -6 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"plK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/solars/starboard/fore) +"plL" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"plT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pmg" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"pmj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"pmu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pmv" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"pmE" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"pmH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"pmO" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"pmQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"pmV" = ( +/turf/closed/wall, +/area/station/maintenance/central) +"pmW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/project) +"pmZ" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/machinery/camera/autoname/directional/east, +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/aquarium/prefilled, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pnd" = ( +/turf/open/floor/iron/stairs/right/airless{ + dir = 4; + color = "#3d3e42" + }, +/area/space/nearstation) +"pni" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pnm" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"pnu" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/commons/vacant_room/office) +"pnv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"pnz" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/medical/pharmacy) +"pnB" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"pnE" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/turf/open/floor/wood/large, +/area/station/service/library) +"pnK" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner, +/area/station/cargo/lower) +"pnL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/rack, +/obj/effect/spawner/random/entertainment/toy, +/obj/effect/spawner/random/entertainment/toy, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"pnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/commons/dorms) +"pnQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Red Team" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"pnT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"pob" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/button/door/directional/south{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -6; + req_access = list("hop") + }, +/obj/machinery/button/door/directional/south{ + id = "queue_hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + req_access = list("hop") + }, +/obj/machinery/button/ticket_machine{ + pixel_x = -6; + pixel_y = -34 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"poh" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"pok" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"pou" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/hallway/primary/starboard) +"poy" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"poA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"poC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"poI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_shutters_parlour"; + name = "Chapel Shutters" + }, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"poM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"poR" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"poS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/structure/tank_holder/extinguisher, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"poZ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/science/genetics) +"ppa" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/reinforced/rglass, +/obj/item/scalpel, +/obj/item/hemostat, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"ppr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pps" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/machinery/shower/directional/north, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/right/directional/north, +/obj/effect/landmark/start/hangover, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/toilet/restrooms) +"ppt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/closet/secure_closet/chief_medical, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/cmo) +"ppv" = ( +/obj/structure/table/wood, +/obj/item/sign/random, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"ppw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood/large, +/area/station/service/library) +"ppB" = ( +/obj/machinery/door/airlock{ + name = "Service Hall" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"ppF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"ppN" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/circuits) +"ppO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"ppZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pqa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"pqd" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"pqf" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central) +"pqi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"pqv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Courtroom Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pqA" = ( +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/service/theater) +"pqC" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"pqG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"pqJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pqN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"pqQ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"pqT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Break Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"prg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"prj" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"prl" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"prn" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"prp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F17-Fore-Hallway"; + codes_txt = "patrol;next_patrol=C1-Fore-Central-B" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"prq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"prx" = ( +/turf/closed/wall, +/area/station/commons/dorms/laundry) +"prB" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/bag/tray, +/obj/item/food/piedough, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"prD" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"prK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/maintenance/fore/greater) +"prO" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"prP" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"prQ" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft) +"prT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/hfr_box/body/waste_output, +/obj/item/hfr_box/body/moderator_input, +/obj/item/hfr_box/body/fuel_input, +/obj/item/hfr_box/body/interface, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"prU" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"psg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"psi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"psl" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port) +"psm" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pso" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison/safe) +"psp" = ( +/obj/structure/billboard/azik, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"psu" = ( +/obj/machinery/restaurant_portal/bar, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/south{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"psy" = ( +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"psG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/donk, +/area/station/cargo/breakroom) +"psK" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/command) +"psM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"psN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/west, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"psO" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) +"psQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"psT" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"psU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"psY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"pta" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"ptc" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"pte" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lab) +"ptg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"ptk" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/glass/reinforced, +/area/station/cargo/miningoffice) +"ptn" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/structure/fireplace{ + fuel_added = 1 + }, +/obj/item/toy/figure/cargotech{ + pixel_y = 37; + pixel_x = 9 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/side, +/area/station/cargo/breakroom) +"ptp" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"pts" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ptB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/range) +"ptD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ptE" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/fore) +"ptF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"ptM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/office) +"ptU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"puh" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"pum" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pup" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/small/directional/west, +/obj/item/table_clock{ + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"pus" = ( +/obj/structure/hedge, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"puv" = ( +/obj/machinery/processor/slime, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"puy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"puA" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/two, +/obj/item/reagent_containers/cup/rag, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"puC" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"puD" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"puF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"puG" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"puI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"puO" = ( +/obj/structure/cable, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"puQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"puT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"puX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"puY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"pve" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/computer/security/telescreen/bar/directional/north, +/obj/machinery/light/directional/north{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"pvf" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"pvg" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"pvh" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"pvi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"pvl" = ( +/turf/closed/wall/r_wall, +/area/station/security/range) +"pvo" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"pvq" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"pvr" = ( +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f" + }, +/area/station/commons/lounge) +"pvv" = ( +/turf/open/openspace, +/area/station/maintenance/port/fore) +"pvC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"pvJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/spawner/directional/south, +/obj/item/stock_parts/power_store/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"pvM" = ( +/obj/effect/spawner/random/trash, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "HoS Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/security/hos_office, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"pvN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pvV" = ( +/obj/structure/table/reinforced, +/obj/item/wrench{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/wrench{ + pixel_y = 6 + }, +/obj/item/crowbar{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/crowbar{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"pvY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"pwd" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pwi" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/iron/white/side{ + dir = 8 + }, +/area/station/service/kitchen) +"pwk" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pwq" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/service/greenroom) +"pww" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"pwG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"pwO" = ( +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/cigbutt{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pwP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/port/aft) +"pwQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"pwV" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"pwY" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pxb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/airlock/mining{ + name = "Cargo Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"pxd" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/genetics) +"pxg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"pxm" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room/upper) +"pxv" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"pxA" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"pxD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/processing) +"pxF" = ( +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/marker_beacon/lime, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/engineering/supermatter/room/upper) +"pxG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"pxI" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/science/robotics/lab) +"pxJ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/hallway/primary/fore) +"pxO" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"pxX" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/clipboard{ + pixel_y = 3; + pixel_x = -1 + }, +/obj/item/folder/blue{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/pen/fountain{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/phone{ + pixel_x = -22; + pixel_y = -4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"pxZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"pyd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"pyi" = ( +/obj/structure/marker_beacon, +/obj/effect/decal/cleanable/wrapping/pinata, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pym" = ( +/turf/closed/wall/r_wall, +/area/station/science/xenobiology/hallway) +"pyt" = ( +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/science) +"pyu" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"pyv" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"pyM" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/door/poddoor/shutters{ + id = "maintmechbay"; + name = "Mech Bay Shutters" + }, +/turf/open/floor/iron/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/port/central) +"pyO" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation/pool) +"pyQ" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"pyW" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"pyZ" = ( +/obj/machinery/door/poddoor/massdriver_chapel, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"pzd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"pzj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/test_chamber/directional/north, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pzm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/theater_dressing) +"pzn" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"pzp" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"pzu" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 2"; + id_tag = "Cell2" + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"pzy" = ( +/turf/closed/wall/r_wall, +/area/station/science/server) +"pzD" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Visitation" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"pzE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"pzH" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"pzL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pzM" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"pzN" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"pzO" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"pzR" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"pzS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"pzT" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Auxiliry Dock Maintainence" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"pAa" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pAc" = ( +/obj/machinery/power/turbine/inlet_compressor{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"pAd" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"pAe" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room/upper) +"pAf" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/lockers) +"pAh" = ( +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"pAj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) +"pAl" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/science/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pAn" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Security Desk"; + req_access = list("security") + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"pAo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"pAu" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"pAx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/closet/secure_closet/security/science, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"pAz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pAH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/table/glass, +/obj/item/storage/medkit/emergency{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/storage/medkit/emergency, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"pAK" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/closet/secure_closet/detective, +/obj/item/clothing/head/fedora/det_hat{ + icon_state = "curator" + }, +/obj/item/clothing/suit/jacket/det_suit{ + icon_state = "curator" + }, +/obj/item/clothing/under/rank/security/detective, +/obj/machinery/requests_console/directional/south{ + department = "Detective's Office"; + name = "Detective's Requests Console" + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"pAP" = ( +/obj/structure/railing, +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"pAZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"pBa" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"pBm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"pBn" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"pBq" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"pBv" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"pBB" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"pBH" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pBK" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"pBM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"pBW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/structure/table/glass, +/obj/item/clothing/head/costume/party/festive, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"pCa" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"pCg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"pCj" = ( +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/aft) +"pCk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"pCm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"pCn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"pCo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"pCq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/miningoffice) +"pCr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"pCx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"pCF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"pCG" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{ + pixel_y = 18; + pixel_x = -5 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"pCK" = ( +/turf/open/floor/plastic, +/area/station/security/prison/work) +"pCM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"pCN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/head/cone{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pDf" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"pDl" = ( +/turf/closed/wall, +/area/station/medical/patients_rooms/room_b) +"pDm" = ( +/obj/item/stack/rods, +/turf/open/space/openspace, +/area/space/nearstation) +"pDp" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"pDs" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"pDy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/pile/style_3, +/obj/item/toy/plush/plasmamanplushie, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pDG" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pDH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/security/checkpoint/customs) +"pDL" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + name = "Shield Wall Generator Storage"; + req_access = list("teleporter") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"pDP" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"pDQ" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"pDV" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"pDY" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"pDZ" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel/funeral) +"pEc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "qmprivacy"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/qm) +"pEj" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"pEp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pEt" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/office) +"pEE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"pEF" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 1 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"pEG" = ( +/obj/structure/closet/firecloset, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/port) +"pEU" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"pEW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/dorms) +"pEX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"pEY" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/flag/nanotrasen/directional/north, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/department/bridge) +"pEZ" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"pFd" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/box/white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/central) +"pFk" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"pFx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"pFy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"pFD" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"pFG" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Science Deliveries" + }, +/obj/structure/sign/departments/science/directional/east{ + color = "#D381C9" + }, +/obj/structure/plasticflaps{ + name = "Science Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"pFM" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"pFU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"pFY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pFZ" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/reagent_containers/cup/soda_cans/tonic{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/turf/open/floor/iron/white/smooth_half, +/area/station/commons/fitness) +"pGf" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/library/lounge) +"pGn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos/hfr_room) +"pGq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/button/door/directional/north{ + id = "Prison Gate"; + name = "Prison Lockdown"; + req_access = list("brig_entrance"); + pixel_x = -6; + pixel_y = 26 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) +"pGs" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"pGt" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"pGy" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/research) +"pGG" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/structure/marker_beacon/yellow, +/turf/open/floor/bamboo, +/area/station/ai_monitored/aisat/exterior) +"pGU" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerDown"; + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"pHa" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"pHb" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"pHh" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"pHi" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/cafeteria) +"pHl" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"pHn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pHv" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/item/experi_scanner{ + pixel_y = 1 + }, +/obj/item/experi_scanner{ + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"pHC" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/station/commons/dorms) +"pHF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"pHI" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pHK" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"pHL" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/turf/open/floor/plating, +/area/station/command) +"pHM" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"pHU" = ( +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/hallway/primary/port) +"pHV" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"pHZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"pIg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"pIh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = -3; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"pIl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"pIn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pIt" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"pIz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"pIM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"pIR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pIT" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pIV" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"pIX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pJh" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/microwave/engineering/cell_included, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"pJi" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"pJj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"pJl" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/aft/greater) +"pJu" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/mercury{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/nitrogen{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/oxygen{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"pJx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pJz" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"pJD" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"pJE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/toy/cattoy, +/obj/machinery/power/apc/auto_name/directional/east, +/mob/living/basic/pet/cat/runtime, +/obj/structure/bed/dogbed/runtime, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"pJJ" = ( +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"pJM" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"pJQ" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"pKf" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/computer/security/telescreen/prison/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/execution/transfer) +"pKh" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"pKk" = ( +/obj/structure/sign/poster/official/enlist/directional/north, +/obj/machinery/computer/security, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"pKt" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant2, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"pKv" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/folder/white{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/pen{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"pKw" = ( +/obj/structure/flora/bush/fullgrass/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"pKy" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"pKJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"pKQ" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"pKT" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/machinery/iv_drip, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"pKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"pLf" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/structure/chair/comfy/black, +/turf/open/floor/wood/large, +/area/station/service/library) +"pLi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"pLl" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) +"pLn" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pLp" = ( +/obj/machinery/computer/records/security{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/checkpoint/escape) +"pLA" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"pLE" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"pLG" = ( +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/turf/open/floor/circuit/green, +/area/station/science/xenobiology) +"pLM" = ( +/obj/structure/hoop{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/textured_half, +/area/station/security/prison) +"pLQ" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"pMe" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"pMo" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pMp" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/bluespace_vendor/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"pMB" = ( +/obj/effect/turf_decal/trimline/purple/filled/shrink_ccw, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"pME" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"pMJ" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/blood/old, +/obj/item/gun/ballistic/revolver/russian{ + pixel_x = -12; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pML" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison/safe) +"pMO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"pMQ" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"pMS" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"pMY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/table_clock, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"pNc" = ( +/obj/effect/spawner/random/trash/graffiti{ + random_icon = 0 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pNf" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"pNg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + name = "Atmospherics Project Room Lockdown"; + id = "projectlock" + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/project) +"pNn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"pNp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"pNr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/computer/records/medical{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pNu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pNy" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"pNz" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pNC" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"pND" = ( +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"pNE" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"pNK" = ( +/obj/structure/guncase/shotgun{ + open = 0; + anchored = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"pNP" = ( +/turf/closed/wall, +/area/station/service/lawoffice) +"pNS" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"pNT" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"pNU" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"pOi" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"pOo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/button/door/directional/north{ + id = "padded"; + name = "Padded Cell Bolts Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = -6; + pixel_y = 26 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 6; + pixel_y = 31 + }, +/obj/machinery/button/curtain{ + pixel_x = -6; + name = "Privacy Curtains"; + id = "psychpriv"; + pixel_y = 36 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"pOv" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"pOz" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/maintenance/central) +"pOC" = ( +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/blue/end, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/right/directional/south, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/toilet/restrooms) +"pOD" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/conveyor{ + id = "mining" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"pOE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"pOG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"pOI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"pOK" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"pOM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/warning/engine_safety/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"pOQ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/tile/dark_blue, +/obj/item/clothing/head/utility/hardhat/welding, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"pOR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/chair/stool/directional/south, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"pOS" = ( +/obj/structure/flora/tree/jungle/small/style_6, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/rock/pile/jungle/style_5, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"pOV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"pOY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"pOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/graffiti{ + random_icon = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pPa" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/morphine, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"pPe" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/carpet, +/area/station/science/breakroom) +"pPh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pPi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"pPk" = ( +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/glass/reinforced, +/area/station/command) +"pPq" = ( +/obj/machinery/shower/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/item/soap/nanotrasen, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"pPs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"pPu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/central) +"pPx" = ( +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid10" + }, +/area/space/nearstation) +"pPC" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_br, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"pPF" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"pPJ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/storage) +"pPM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"pPQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"pPT" = ( +/obj/structure/lattice/catwalk, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"pPV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"pPX" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/port/aft) +"pQa" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/construction/mining/aux_base) +"pQe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"pQi" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_3, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/robotics/lab) +"pQo" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"pQr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"pQt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"pQu" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/razor{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/razor{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/turf/open/floor/iron/white/diagonal, +/area/station/commons/toilet/restrooms) +"pQA" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"pQE" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/processing) +"pQH" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"pQJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"pQK" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"pQM" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clipboard, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/cargo/lower) +"pQS" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"pQT" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"pQW" = ( +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"pRn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"pRp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"pRq" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"pRr" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"pRz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"pRC" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pRG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/experi_scanner{ + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"pRJ" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/turf_decal/trimline/dark_green/line, +/obj/item/storage/belt/bandolier, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 1 + }, +/obj/machinery/light/warm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"pRK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 5; + network = list("interrogation") + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/interrogation) +"pRP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos) +"pRT" = ( +/obj/machinery/vending/wallmed/directional/west{ + pixel_x = -26 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/structure/bed/medical/emergency, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/railing, +/obj/effect/turf_decal/siding, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"pRX" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"pRY" = ( +/obj/structure/sign/poster/official/moth_piping/directional/north, +/obj/structure/table, +/obj/item/folder{ + pixel_y = 4; + pixel_x = 2 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"pSe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pSg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Bypass" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pSo" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/garden) +"pSx" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"pSz" = ( +/obj/structure/sign/warning/docking/directional/east, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = 9 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"pSA" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"pSE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"pSH" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/effect/decal/cleanable/confetti, +/obj/structure/railing, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"pSJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pSL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"pSP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"pSV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"pSX" = ( +/obj/structure/broken_flooring/singular/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"pTa" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"pTb" = ( +/obj/machinery/light/floor, +/turf/closed/wall, +/area/station/cargo/breakroom) +"pTg" = ( +/obj/machinery/computer/crew, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"pTs" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"pTz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"pTB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"pTC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload) +"pTD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/trimline/brown/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/cargo/lower) +"pTK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"pTM" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) +"pTW" = ( +/obj/effect/turf_decal/trimline/neutral/end{ + dir = 8 + }, +/obj/machinery/door/window/right/directional/west{ + name = "Ordnance Storage Access"; + req_access = list("ordnance") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"pTX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"pUb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"pUf" = ( +/turf/closed/wall, +/area/station/medical/break_room) +"pUi" = ( +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"pUj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/backpack/satchel/leather/withwallet{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/storage/lockbox/loyalty, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"pUn" = ( +/obj/structure/railing{ + dir = 4; + pixel_y = -8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 8; + pixel_y = -8; + color = "#683d21" + }, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f" + }, +/area/station/service/kitchen/diner) +"pUp" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"pUw" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"pUB" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"pUI" = ( +/obj/machinery/vending/snack/orange, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"pUM" = ( +/obj/structure/flora/grass/green/style_3, +/obj/structure/flora/bush/lavendergrass/style_2, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/tree/dead/style_4{ + pixel_y = 7 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"pUY" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"pUZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"pVf" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"pVg" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/janitor) +"pVs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) +"pVA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"pVH" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig/lower) +"pVJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"pVK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"pVP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"pVQ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pVZ" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"pWc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"pWd" = ( +/obj/structure/closet/secure_closet/personal{ + anchored = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"pWk" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"pWy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"pWA" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/ai_module/reset/purge{ + pixel_y = 11 + }, +/obj/effect/spawner/random/aimodule/harmful, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/flasher/directional/east{ + id = "AI" + }, +/obj/machinery/light/directional/east, +/obj/machinery/door/window/brigdoor/right/directional/west{ + name = "High-Risk Modules"; + req_access = list("captain") + }, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"pWS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"pXc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"pXh" = ( +/obj/structure/sign/departments/custodian/directional/south, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"pXi" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"pXt" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/engineering/supermatter) +"pXz" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"pXE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"pXF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"pXK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/aft/lesser) +"pXQ" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"pXS" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"pXX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"pXY" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"pYb" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/port/aft) +"pYc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) +"pYl" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"pYn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"pYp" = ( +/obj/structure/railing/corner{ + dir = 4; + color = "#4874A2" + }, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"pYq" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"pYu" = ( +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pYw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee, +/obj/structure/sign/warning/pods/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"pYy" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/range) +"pYE" = ( +/obj/structure/table/glass, +/obj/structure/window/spawner/directional/south, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/o2, +/obj/item/storage/medkit/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"pYN" = ( +/obj/machinery/computer/rdconsole, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"pYO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"pYP" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"pYQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/electrolyzer, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"pYZ" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Bar Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/bar, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"pZe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"pZh" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"pZk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/locker) +"pZm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos) +"pZo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/box/red/corners{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"pZs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"pZt" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/central) +"pZF" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"pZG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"pZH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"pZJ" = ( +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"pZM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"pZO" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"pZP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"pZQ" = ( +/obj/structure/rack, +/obj/machinery/newscaster/directional/west, +/obj/item/storage/belt/fannypack/red, +/obj/item/storage/backpack{ + icon_state = "backpack-banner_red"; + name = "Red Team" + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"qab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"qan" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qap" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/engine_smes) +"qar" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qax" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#5971a6"; + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"qay" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"qaB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qaE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"qaF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"qaH" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/sign/clock/directional/north{ + pixel_x = 7 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/button/door/directional/north{ + pixel_x = -7; + pixel_y = 27; + id = "sciprivacy"; + name = "Secondary Research Shutters Control"; + req_access = list("science") + }, +/obj/machinery/button/door/directional/north{ + pixel_x = -7; + pixel_y = 36; + name = "Primary Research Shutters Control"; + id = "rdrnd"; + req_access = list("science") + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lab) +"qaL" = ( +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"qbe" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"qbj" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/jungle/b/style_2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "apiary"; + name = "Apiary Shutters Control"; + req_access = list("hydroponics") + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"qbn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"qbx" = ( +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"qbE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"qbJ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"qbL" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"qbN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"qbP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"qbQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"qca" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"qcb" = ( +/obj/structure/cable, +/turf/open/floor/iron/chapel{ + dir = 4 + }, +/area/station/service/chapel) +"qce" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"qch" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"qck" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"qcm" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"qct" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage_shared) +"qcD" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/service/minibar) +"qcI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/aft) +"qcJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"qcL" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"qcN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"qda" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"qdg" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/structure/rack, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms, +/area/station/tcommsat/server) +"qdl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/sign/calendar/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"qdw" = ( +/obj/item/food/grown/poppy/geranium, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid9" + }, +/area/space/nearstation) +"qdy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"qdC" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"qdF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"qdI" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "apiary" + }, +/turf/open/floor/plating, +/area/station/service/hydroponics) +"qdR" = ( +/obj/structure/table, +/obj/item/reagent_containers/cup/bucket/wooden, +/obj/effect/turf_decal/siding/green/end{ + dir = 4 + }, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"qec" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"qex" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/hfr_room) +"qeC" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qeJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"qeM" = ( +/obj/machinery/airalarm/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"qeN" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"qeW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"qfa" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"qfb" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"qfd" = ( +/obj/effect/turf_decal/trimline/red/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"qfk" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/item/kirbyplants/organic/plant1, +/obj/structure/sign/poster/official/moth_epi/directional/south, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_a) +"qfr" = ( +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"qfs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/end{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"qft" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/newspaper, +/obj/machinery/button/door/directional/east{ + name = "Cafe Shutters Control"; + id = "arrivalcafe" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"qfu" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"qfy" = ( +/mob/living/simple_animal/bot/floorbot, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"qfB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"qfC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"qfI" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"qfK" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/spawner/random/trash, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qfR" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"qfU" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"qfW" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"qga" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/gun/energy/e_gun/mini, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"qgf" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qgn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/random/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"qgp" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"qgr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"qgy" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring" + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"qgG" = ( +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/both/style_2, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/flora/rock/pile/icy, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/command/heads_quarters/rd) +"qgJ" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/minibar) +"qgL" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/obj/item/clothing/mask/bandana/striped/cargo, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qgQ" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"qgW" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"qgY" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"qgZ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qha" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"qhg" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"qhh" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"qhj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"qhk" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"qhu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ore_box, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qhv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qhw" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/item/food/snowcones/berry, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qhx" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/clothing/neck/tie/blue, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/head/soft/blue, +/obj/item/clothing/head/soft/blue, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","bar") + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"qhz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"qhF" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/disposal/incinerator) +"qhH" = ( +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"qhK" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"qhL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"qhQ" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"qig" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"qih" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/defibrillator_mount/mobile{ + anchored = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"qik" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"qin" = ( +/obj/structure/railing{ + dir = 9; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"qip" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qiq" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/security/brig) +"qiw" = ( +/mob/living/basic/pet/penguin/baby/permanent{ + dir = 8 + }, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"qiG" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qiJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/button/door/directional/north{ + id = "crematoriumshutter"; + name = "Crematorium Shutters Control"; + req_access = list("crematorium") + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/service/chapel/funeral) +"qjk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"qjl" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"qjo" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qjr" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/central) +"qjt" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"qjC" = ( +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"qjD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood/poker, +/obj/item/radio/intercom/directional/south, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"qjJ" = ( +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qjS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qjW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/obj/machinery/digital_clock/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/central) +"qkb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"qkc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/breakroom) +"qkd" = ( +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/structure/toilet{ + pixel_y = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/patients_rooms) +"qke" = ( +/obj/machinery/atmospherics/components/tank/oxygen{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"qkf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qkl" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qkq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"qkz" = ( +/obj/machinery/door/airlock/security{ + id_tag = "IsolationCell"; + name = "Isolation Cell" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/prison/safe) +"qkC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 4 + }, +/area/station/service/bar/backroom) +"qkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/dim/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qkQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) +"qkU" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"qkW" = ( +/turf/open/openspace, +/area/station/engineering/atmos/upper) +"qkY" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"qkZ" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"qla" = ( +/obj/machinery/smartfridge/drinks, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"qld" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/station/security/medical) +"qle" = ( +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/kitchen/diner) +"qlp" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"qlr" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qlu" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"qlB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/engineering/lobby) +"qlC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qlJ" = ( +/obj/structure/table/glass, +/obj/item/food/grown/poppy/lily, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"qlL" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"qlN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"qlO" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"qlQ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qlW" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qlY" = ( +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"qmf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/fore/lesser) +"qmg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"qmm" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Ordnance Access"; + req_access = list("ordnance") + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"qmE" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"qmH" = ( +/obj/structure/sink/kitchen/directional/east, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"qmJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/spawner/random/structure/closet_empty/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qmK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qmQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage/gas) +"qmV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"qnc" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qnl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/button/door/directional/east{ + pixel_y = -6; + id = "hop"; + req_access = list("hop"); + name = "Privacy Shutters Control" + }, +/obj/structure/cable, +/obj/machinery/keycard_auth/wall_mounted/directional/east{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"qnm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qnn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"qnq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"qnr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"qns" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"qnv" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qnx" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/security/courtroom) +"qnH" = ( +/obj/structure/rack, +/obj/item/storage/box/bodybags, +/obj/item/clothing/under/rank/medical/scrubs/purple, +/obj/item/clothing/under/rank/medical/scrubs/purple{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/gloves/latex, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/medical) +"qnK" = ( +/obj/structure/fireplace, +/obj/item/toy/figure/scientist{ + pixel_y = 37; + pixel_x = -10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/item/toy/toy_xeno{ + pixel_y = 37; + pixel_x = 10; + plane = -7 + }, +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/side, +/area/station/science/breakroom) +"qnV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/warning/no_smoking/circle/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qnY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"qoj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"qol" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8; + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/commons/dorms) +"qon" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"qoo" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"qot" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"qow" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"qoC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"qoI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"qoM" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"qoN" = ( +/obj/machinery/button/elevator/directional/west{ + id = "BridgeElevator" + }, +/obj/machinery/lift_indicator/directional/west{ + pixel_x = -33; + pixel_y = -1; + linked_elevator_id = "BridgeElevator" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 1 + }, +/obj/machinery/door/window/elevator/left/directional/south{ + transport_linked_id = "BridgeElevator"; + elevator_mode = 1; + req_access = null + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command) +"qoS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"qoU" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/extinguisher, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qoX" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) +"qpa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/machinery/air_sensor/engine_chamber, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"qpc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"qpe" = ( +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"qpf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"qph" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qpk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"qpp" = ( +/obj/machinery/vending/cart{ + req_access = list("hop") + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"qpu" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/textured, +/area/station/maintenance/starboard/fore) +"qpw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"qpC" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qpE" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/starboard) +"qpI" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"qpJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qpL" = ( +/obj/effect/turf_decal/box, +/obj/machinery/computer/security/qm, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/structure/secure_safe/directional/north, +/obj/item/toy/figure/qm{ + pixel_x = -8; + pixel_y = 17 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/qm) +"qpN" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/fore) +"qpP" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"qpT" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"qqa" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"qqg" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/command) +"qqh" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "maintmechbay"; + name = "Workshop Shutters"; + pixel_y = -6 + }, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"qqi" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/structure/hedge, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"qqn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/navbeacon{ + location = "F10-Cargo"; + codes_txt = "patrol;next_patrol=F11-Cargo" + }, +/mob/living/simple_animal/bot/secbot/beepsky/officer{ + name = "Beepsky the Third" + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"qqt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/station/solars/port/fore) +"qqv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"qqM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qqN" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"qqR" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/small, +/area/station/security/checkpoint/customs) +"qqS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"qrd" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/commons/dorms) +"qrg" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/food/dough{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/item/reagent_containers/condiment/enzyme{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"qrm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"qrr" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"qrv" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"qrx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"qrB" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"qrH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qrL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"qrP" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/sign/warning/pods/directional/south, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"qrT" = ( +/obj/structure/hedge, +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"qrV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"qrX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"qse" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qsf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"qsg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"qsm" = ( +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/mineral/ore_redemption{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/window/right/directional/north{ + name = "Cargo Security Window"; + req_access = list("cargo") + }, +/obj/machinery/door/window/left/directional/south{ + name = "Ore Redemtion Window" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"qsv" = ( +/obj/structure/rack, +/obj/item/storage/fish_case/random, +/obj/item/storage/fish_case/random, +/obj/item/storage/fish_case/blackmarket, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qsQ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"qsW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"qta" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy Break Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/turf/open/floor/iron/dark/smooth_large, +/area/station/medical/pharmacy) +"qtb" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/contraband/eistee/directional/west, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"qte" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"qtj" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"qtn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"qtr" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"qtF" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/hallway/primary/port) +"qtG" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/structure/table/reinforced, +/obj/item/hand_labeler{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/book/manual/wiki/infections{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/radio/headset/headset_med, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qtO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"qtS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/donk, +/area/station/medical/pharmacy) +"qtU" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/small/directional/west, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"qud" = ( +/obj/structure/holosign/barrier/engineering, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qum" = ( +/obj/structure/table/glass, +/obj/item/newspaper, +/obj/effect/spawner/random/food_or_drink/booze, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"qun" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"quD" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/spawner/random/entertainment/dice{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6; + pixel_x = -9 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"quJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/caution_sign, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"quM" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"quR" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/fax{ + fax_name = "Quartermaster's Office"; + name = "Quartermaster's Fax Machine" + }, +/obj/item/paperwork/cargo, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"quT" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 8 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"quU" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"quV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"quX" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"qvb" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/hallway/primary/aft) +"qvg" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qvj" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qvk" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"qvl" = ( +/obj/structure/sign/warning/test_chamber, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"qvn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Ports" + }, +/obj/effect/turf_decal/trimline/purple, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qvv" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"qvD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/range) +"qvF" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qvK" = ( +/obj/structure/flora/rock/pile/icy/style_3, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"qvL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"qvO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/execution/education) +"qvU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"qvV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qvW" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"qvZ" = ( +/obj/structure/railing{ + dir = 1; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"qwb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"qwd" = ( +/obj/structure/stairs/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"qwg" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"qwk" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/cargo/lower) +"qwv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"qww" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"qwC" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/grown/bananapeel, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qwD" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/engineering/atmos) +"qwM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/electrolyzer, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"qwR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Armoury Desk"; + req_access = list("armory") + }, +/obj/machinery/door/window/right/directional/south{ + name = "Armoury Desk"; + req_access = list("security") + }, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"qwT" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/green, +/obj/effect/turf_decal/trimline/green, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"qwU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/clothing/wardrobe_closet, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/pirate_or_bandana, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"qwV" = ( +/obj/structure/sign/warning/vacuum/directional/south, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal) +"qwX" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qwZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qxa" = ( +/obj/structure/aquarium/prefilled, +/obj/structure/railing{ + dir = 10; + color = "#4874A2" + }, +/obj/structure/sign/poster/contraband/rip_badger/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"qxh" = ( +/obj/structure/barricade/sandbags{ + color = "#0095ff" + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"qxi" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"qxk" = ( +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/openspace, +/area/station/maintenance/port/fore) +"qxo" = ( +/obj/structure/chair/sofa/corp/left, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"qxp" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/fore/greater) +"qxq" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"qxw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/sign/directions/security/directional/north{ + pixel_y = 40; + dir = 4 + }, +/obj/structure/sign/directions/command/directional/north{ + dir = 4 + }, +/obj/structure/sign/directions/evac/directional/north{ + pixel_y = 24; + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qxH" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"qxP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qya" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"qyc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"qyd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/command) +"qye" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qyh" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space) +"qyj" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qyk" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"qyn" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access = list("armory") + }, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"qyy" = ( +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness) +"qyA" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"qyC" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/power/apc/auto_name/directional/east{ + areastring = "/area/station/science/ordnance/burnchamber" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"qyH" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 16 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner{ + dir = 2; + color = "#683d21" + }, +/obj/structure/railing/corner{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/wood/tile, +/area/station/security/courtroom) +"qyJ" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Xenobio Pen 7 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"qyM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/east{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"qyU" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qyW" = ( +/obj/machinery/seed_extractor, +/obj/item/toy/figure/botanist{ + pixel_y = 15; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics) +"qzc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/sign/directions/supply/directional/north{ + pixel_y = 24 + }, +/obj/structure/sign/directions/medical/directional/north{ + pixel_y = 40 + }, +/obj/structure/sign/directions/science/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"qze" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/cargo/storage) +"qzk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"qzA" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qzE" = ( +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/lower) +"qzF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"qzL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/hfr_room) +"qzR" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"qzU" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/structure/railing/corner/end, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/hydroponics/garden) +"qAa" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/maintenance/port) +"qAe" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/medical/lower) +"qAg" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -8 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = -8 + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"qAi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/medical/coldroom) +"qAl" = ( +/obj/structure/hedge, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"qAt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"qAv" = ( +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/prison) +"qAF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qAG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"qAI" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"qAO" = ( +/obj/effect/turf_decal/bot/right, +/obj/structure/rack, +/obj/effect/spawner/random/armory/riot_armor, +/obj/effect/spawner/random/armory/riot_helmet, +/obj/effect/spawner/random/armory/riot_shield, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"qBb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"qBc" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port) +"qBd" = ( +/obj/item/clothing/accessory/medal, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qBu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"qBD" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/fence, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qBI" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/aft) +"qBJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Pure to Mix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qBL" = ( +/turf/open/floor/circuit, +/area/station/command/bridge) +"qBO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/button/door/directional/south{ + id = "Cell1"; + normaldoorcontrol = 1; + specialfunctions = 4; + name = "Cell 1 Doors Bolt Control"; + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qBU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Fitness Room" + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness) +"qBX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"qCb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"qCc" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"qCd" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"qCf" = ( +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/item/clothing/head/cone{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qCn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qCs" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"qCt" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"qCu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Security Desk" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/left/directional/east{ + name = "Security Desk" + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"qCw" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leavy/style_2, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/rock/pile/jungle/style_4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"qCA" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Virology Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/medbay/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qCB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qCE" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 21 + }, +/obj/item/lighter{ + pixel_x = -6 + }, +/obj/item/lighter{ + pixel_x = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"qCG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north{ + network = list("minisat") + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"qCH" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"qCP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qCQ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"qCS" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qCX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"qDa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"qDf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/command) +"qDk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"qDv" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/decal/cleanable/food/tomato_smudge{ + pixel_x = 15; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/wrapping/pinata, +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/port) +"qDA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"qDD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"qDG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"qDS" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"qDY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"qDZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/warehouse) +"qEa" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/door/window/left/directional/south{ + name = "Desk Access"; + req_access = list("library") + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"qEc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/spacevine{ + can_spread = 0; + pixel_y = 32 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/easel, +/obj/item/canvas/nineteen_nineteen, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"qEg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/ladder, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"qEm" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/cargo/storage) +"qEr" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/aft/greater) +"qEF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"qEH" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/airlock/command{ + name = "Command Hallway" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command) +"qEL" = ( +/obj/structure/rack, +/obj/item/radio/off{ + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/structure/sign/poster/official/random/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/equipment) +"qEO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"qEP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"qET" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"qEW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/landmark/start/depsec/engineering, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"qFg" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qFj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = 8; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"qFv" = ( +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"qFx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qFE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qFF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/tile/red, +/obj/item/kirbyplants/organic/plant21{ + pixel_x = 15; + pixel_y = 16 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/prison/work) +"qFJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"qFL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/project) +"qFM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"qFQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qFS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/central) +"qFY" = ( +/obj/structure/chair/office{ + dir = 4; + name = "Prosecution" + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"qFZ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"qGe" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"qGg" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"qGi" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"qGo" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/medical/pharmacy) +"qGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/aft) +"qGD" = ( +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"qGE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"qGI" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/bot/right, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"qGL" = ( +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"qGN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"qGO" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"qGY" = ( +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/small, +/area/station/commons/lounge) +"qHa" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qHd" = ( +/obj/machinery/door/airlock/wood{ + name = "Theater Backstage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"qHe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"qHf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/iron/textured_corner{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"qHi" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qHj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/toy/figure/chaplain{ + pixel_y = 13 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"qHl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/door/window/right/directional/south{ + req_access = list("science"); + name = "Research Test Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"qHn" = ( +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"qHo" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"qHy" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qHz" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"qHL" = ( +/obj/structure/flora/grass/green/style_random, +/obj/structure/flora/bush/snow, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/rock/icy, +/obj/structure/flora/bush/snow/style_6, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"qHO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"qHV" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/cargo/storage) +"qHX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"qIc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qId" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"qIe" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"qIh" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/hangover, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"qIl" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/structure/desk_bell{ + pixel_x = 6 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Robotics Desk"; + req_access = list("robotics") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"qIn" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 2 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"qIp" = ( +/obj/machinery/door/airlock{ + id_tag = "LDorm2"; + name = "Luxury Cabin 2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"qIs" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"qIu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/science/ordnance) +"qIx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"qIC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"qIE" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/b, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"qIF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"qIG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"qIH" = ( +/obj/effect/turf_decal/trimline/white/arrow_cw, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/security/prison) +"qIM" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"qIQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qJf" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"qJg" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qJr" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics/garden) +"qJs" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/command) +"qJt" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qJw" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"qJy" = ( +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"qJA" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"qJB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/shrink_cw, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"qJE" = ( +/obj/item/flashlight/glowstick{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qJG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"qJJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/hfr_room) +"qJL" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/cargo/lower) +"qJO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"qJR" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qJS" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"qJZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"qKa" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"qKb" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"qKf" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/chair/comfy/black, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"qKh" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Lab" + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"qKi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock/pile, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qKj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"qKo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/structure/cable, +/obj/machinery/door/window/left/directional/east{ + name = "Atmospherics Desk"; + req_access = list("atmospherics") + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/storage/gas) +"qKq" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/sign/poster/official/moth_piping/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"qKs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"qKN" = ( +/mob/living/simple_animal/bot/secbot/beepsky/armsky, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory) +"qKS" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"qKT" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/item/kirbyplants/organic/plant10, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"qKW" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qLb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"qLd" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/fluff/paper/stack{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qLi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"qLk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qLl" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/science/genetics) +"qLo" = ( +/obj/machinery/griddle, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"qLu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"qLC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"qLD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"qLS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"qLU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"qLX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"qLZ" = ( +/obj/structure/fermenting_barrel, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/poster/random_official, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qMa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"qMg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"qMo" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/medical) +"qMu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"qMz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qMF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"qMH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qMJ" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/box/beanbag{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/bountyhunters/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"qML" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"qMN" = ( +/obj/structure/cable, +/obj/structure/sink/directional/west, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/science/genetics) +"qMO" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/cerulean, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qMS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/structure/flora/grass/both/style_random, +/obj/structure/flora/bush/snow/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"qMU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/item/storage/bag/trash, +/obj/structure/marker_beacon/jade, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qNa" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/obj/effect/decal/cleanable/rubble, +/obj/structure/flora/tree/palm/style_random{ + pixel_y = 10; + pixel_x = 3 + }, +/turf/open/misc/beach/sand, +/area/station/ai_monitored/aisat/exterior) +"qNb" = ( +/turf/closed/wall, +/area/station/medical/pharmacy) +"qNc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"qNk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qNl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qNo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"qNs" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"qNw" = ( +/obj/item/cultivator, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/hydroponics/soil, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/grass{ + icon_state = "grass2" + }, +/area/station/security/prison/garden) +"qNA" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"qNC" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"qNZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"qOa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"qOc" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Atmospherics Tank - N2" + }, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"qOe" = ( +/obj/item/ammo_casing/a357/spent{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qOf" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qOm" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"qOs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"qOu" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/white/filled/corner, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/service/kitchen) +"qOA" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"qOD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"qOE" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"qOK" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"qOL" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"qOR" = ( +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/fullgrass, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"qPc" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"qPd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"qPl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"qPH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qPO" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/fore) +"qPR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"qPS" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"qPT" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"qPU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qPZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"qQa" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/funeral) +"qQh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Disposals Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/supply/disposals, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qQi" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/sign/poster/official/ion_rifle/directional/north, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"qQn" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/plasteel/twenty, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"qQq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"qQu" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_y = -32 + }, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"qQC" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/service/library/upper) +"qQF" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"qQH" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qQQ" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"qQV" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#00AAFF"; + pixel_y = 15 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"qRb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"qRf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/machinery/light/floor{ + color = "#ff66ff" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"qRg" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/cargo/office) +"qRh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"qRi" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/break_room) +"qRo" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/science/lobby) +"qRt" = ( +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"qRC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maintmechbay"; + name = "Mech Bay Shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/port/central) +"qRL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/rock/style_3, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qRY" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"qRZ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"qSf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/broken_flooring/singular{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"qSi" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"qSr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qSu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/effect/decal/cleanable/confetti, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"qSw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"qSz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"qSA" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"qSF" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"qST" = ( +/obj/structure/table/glass, +/obj/item/crowbar, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"qTi" = ( +/obj/machinery/door/airlock{ + name = "Law Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/lawoffice) +"qTk" = ( +/obj/effect/spawner/random/engineering/tank, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"qTl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"qTm" = ( +/obj/structure/sign/poster/random/directional/north, +/turf/closed/wall, +/area/station/maintenance/port/fore) +"qTo" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end, +/obj/structure/rack, +/obj/item/soap/deluxe{ + pixel_y = 2 + }, +/obj/item/soap{ + pixel_y = -4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"qTx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/ce) +"qTD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"qTE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/noticeboard/directional/west{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"qTF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"qTK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"qTR" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/help_others/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"qTY" = ( +/obj/structure/chair/stool/directional/south, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"qUh" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/circuit/green, +/area/station/science/robotics/storage) +"qUj" = ( +/obj/effect/decal/cleanable/vomit/nebula, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"qUk" = ( +/obj/structure/cable, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"qUp" = ( +/turf/closed/wall, +/area/station/security/checkpoint/supply) +"qUv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public{ + name = "Unisex Restrooms" + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/shower) +"qUA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/north, +/obj/machinery/fax{ + fax_name = "Cargo Office"; + name = "Cargo Office Fax Machine" + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"qUF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/cargo/mining_breakroom) +"qUX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"qUZ" = ( +/obj/machinery/door/airlock{ + name = "Service Hall" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"qVc" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/obj/structure/closet/secure_closet/security/engine, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"qVd" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"qVg" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qVo" = ( +/obj/structure/flora/bush/fullgrass, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"qVp" = ( +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"qVt" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/greenroom) +"qVx" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"qVy" = ( +/obj/structure/flora/rock/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"qVz" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/computer/station_alert, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"qVC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/solars/port/fore) +"qVN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/fore/lesser) +"qVW" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"qWf" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qWh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"qWu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"qWB" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"qWF" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"qWH" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"qWR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"qXf" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater) +"qXg" = ( +/obj/structure/railing, +/obj/machinery/iv_drip, +/obj/structure/bed/medical/emergency{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/white/textured_large, +/area/station/maintenance/department/medical) +"qXj" = ( +/obj/machinery/computer/records/security{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"qXo" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/aft) +"qXs" = ( +/obj/machinery/door/window/brigdoor/left/directional/east{ + req_access = list("security"); + name = "Science Cell"; + id = "scicell" + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"qXt" = ( +/obj/item/stack/tile/wood, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"qXA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/cargo) +"qXG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/electrolyzer, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"qXJ" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"qXK" = ( +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/paper/monitorkey, +/obj/item/stamp/head/ce, +/obj/structure/table/reinforced/rglass, +/obj/item/lighter{ + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"qXN" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/cargo/lobby) +"qXS" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"qXU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"qXZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable/layer3, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"qYk" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/utility/hardhat, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"qYr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"qYs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"qYy" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"qYz" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"qYA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/disposal) +"qYH" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/noticeboard/captain{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"qYL" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"qYM" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/circuit, +/area/station/command/teleporter) +"qYN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"qYX" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qZb" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/closet/crate/trashcart, +/obj/machinery/camera/autoname/motion/directional/south{ + network = list("minisat") + }, +/turf/open/misc/asteroid/airless, +/area/station/ai_monitored/aisat/exterior) +"qZc" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/rock/style_2, +/turf/open/floor/grass, +/area/station/engineering/break_room) +"qZd" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"qZj" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"qZk" = ( +/obj/structure/table/wood, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/reagent_containers/cup/rag, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"qZz" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"qZB" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"qZM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"qZQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"qZT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/table/wood/fancy/red, +/obj/item/paint_palette, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"qZY" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/jungle/a/style_random, +/turf/open/floor/grass, +/area/station/medical/virology) +"qZZ" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/security/cell/left/directional/north{ + id = "Cell 2"; + name = "Cell 2" + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/brig) +"rai" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"raj" = ( +/obj/machinery/computer/warrant{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"rak" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Cafe Shutters"; + id = "arrivalcafe" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/cafeteria) +"ram" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"ran" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"ras" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rav" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/service/theater_dressing) +"raw" = ( +/obj/item/newspaper, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"raC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"raG" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"raL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"raM" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"raN" = ( +/obj/structure/rack, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"raT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/sign/departments/security/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/box, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/central) +"rba" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"rbb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"rbe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/biogenerator, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"rbf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"rbg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"rbo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"rbw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Auxiliry Dock Maintainence" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"rbB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/tram/solo{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"rbI" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"rbJ" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rbL" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"rbO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/mannequin/plastic, +/obj/machinery/light_switch/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"rbP" = ( +/obj/machinery/atmospherics/components/unary/passive_vent/layer2{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"rbS" = ( +/turf/closed/wall, +/area/station/engineering/atmos/project) +"rbT" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"rbZ" = ( +/obj/structure/railing, +/obj/structure/shipping_container/deforest, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"rck" = ( +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rcm" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rcn" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rcu" = ( +/turf/closed/wall, +/area/station/service/kitchen/coldroom) +"rcA" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/bridge) +"rcD" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/caution_sign, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rcE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"rcG" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"rcH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rcJ" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/healthanalyzer, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"rda" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"rdb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"rdf" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/machinery/navbeacon{ + location = "C3-Aft-Central-B"; + codes_txt = "patrol;next_patrol=C4-Port-Central-Fw" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"rdh" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"rdx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"rdE" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rdK" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/engine_smes) +"rdO" = ( +/obj/effect/bluespace_stream{ + name = "Reality Anchor"; + desc = "You feel... Real?" + }, +/obj/structure/marker_beacon/purple, +/obj/effect/decal/cleanable/vomit/nebula, +/turf/open/floor/plating/abductor, +/area/station/maintenance/starboard/central) +"rdQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"rdS" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"rdV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro Staging to Filter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"rdW" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"rdY" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/range) +"red" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/west{ + dir = 10; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/science/genetics) +"ree" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"rep" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"req" = ( +/obj/structure/sign/departments/holy/directional/north, +/turf/open/openspace, +/area/station/maintenance/fore/greater) +"rer" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=P11-Service-Hallway"; + location = "P10-Diner" + }, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/diner) +"rew" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/white, +/area/station/commons/fitness) +"reA" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"reJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"reL" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/science/breakroom) +"reO" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/station/maintenance/central) +"reR" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/rock/pile, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/turf/open/misc/hay, +/area/station/maintenance/starboard/central) +"reS" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/white/smooth_corner{ + dir = 1 + }, +/area/station/medical/surgery/theatre) +"reX" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/toy/cards/deck{ + pixel_y = 3; + pixel_x = 11 + }, +/obj/item/toy/cards/deck/blank{ + pixel_y = 9; + pixel_x = -3 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"reZ" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + name = "Secondary AI Core Access"; + req_access = list("ai_upload"); + pixel_x = -4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/caution/white{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = 26 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"rfe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"rfg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"rfo" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/station/service/library) +"rfp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"rfr" = ( +/obj/machinery/light/floor{ + color = "#ff8080" + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"rfs" = ( +/obj/structure/flora/bush/lavendergrass/style_2, +/mob/living/basic/chicken, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"rft" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"rfu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/central) +"rfB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"rfC" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/effect/turf_decal/caution/white{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"rfH" = ( +/obj/structure/fake_stairs/directional/east, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rfP" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rfT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/range) +"rfV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/machinery/computer/records/security{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rfY" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rgd" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"rge" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/service/hydroponics/garden) +"rgh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"rgi" = ( +/turf/open/openspace, +/area/space) +"rgl" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "O2 to Airmix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"rgp" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"rgx" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"rgy" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rgE" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"rgF" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/siding/red, +/obj/structure/window/spawner/directional/south{ + color = "#9d1a1a" + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"rgH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"rgI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"rgL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rgO" = ( +/obj/item/radio/intercom/chapel/directional/west, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"rgR" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"rgV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/visit) +"rgX" = ( +/obj/structure/cable, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"rha" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"rhf" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rhg" = ( +/obj/machinery/digital_clock/directional/north, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"rhh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/maintenance/central) +"rhl" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rhu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"rhw" = ( +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_corner, +/area/station/security/mechbay) +"rhz" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison/mess) +"rhF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rhL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"rhN" = ( +/obj/structure/rack, +/obj/item/poster/random_official{ + pixel_y = 8 + }, +/obj/item/poster/random_official{ + pixel_y = 5 + }, +/obj/item/poster/random_official{ + pixel_y = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"rhQ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"rhS" = ( +/obj/machinery/griddle, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"rhU" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"rhZ" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/wrapping/pinata/syndie, +/obj/item/cigbutt, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/machinery/light/small/dim/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"ril" = ( +/turf/open/floor/circuit/green, +/area/station/science/xenobiology) +"rim" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"ris" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/aft) +"riw" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port/aft) +"riB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/port) +"riE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/circuit/green, +/area/station/science/xenobiology) +"riG" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/sign/calendar/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"riM" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"riP" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"riQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos/project) +"riU" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"riV" = ( +/obj/structure/chair/sofa/bench/solo, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"riX" = ( +/obj/structure/broken_flooring/side/directional/west, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rjh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"rjk" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"rjA" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/table, +/obj/machinery/firealarm/directional/south, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/research_and_development{ + pixel_y = 1; + pixel_x = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/breakroom) +"rjC" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"rjD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/table/reinforced, +/obj/item/storage/medkit/emergency, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"rjK" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rjP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/left, +/area/station/medical/surgery/theatre) +"rjQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"rjU" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"rjZ" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/water_source/puddle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/large/style_2{ + pixel_y = -1 + }, +/turf/open/floor/grass, +/area/station/service/greenroom) +"rkb" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/bookcase/random/reference, +/obj/item/toy/figure{ + pixel_y = 19 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"rkl" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"rkw" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Engineering Deliveries"; + req_access = list("engineering") + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/supermatter/room/upper) +"rkx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/style_4, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rkE" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"rkG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rkK" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/no_nightlight/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"rkM" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rkO" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"rkT" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"rlj" = ( +/obj/structure/cable, +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/science) +"rlr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"rlA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"rlC" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"rlH" = ( +/turf/closed/wall, +/area/station/science/robotics/mechbay) +"rlJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"rlW" = ( +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_corner, +/area/station/engineering/storage) +"rmd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/ladder, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rme" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"rmj" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/rxglasses{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 12; + pixel_x = 8 + }, +/obj/item/stack/medical/gauze{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/blue/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"rmk" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Security Deliveries" + }, +/obj/structure/sign/departments/security/directional/east{ + color = "#DE3A3A" + }, +/obj/structure/plasticflaps{ + name = "Security Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"rml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/security/prison) +"rmr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/right, +/area/station/hallway/primary/fore) +"rmu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Theater Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/theater, +/turf/open/floor/plating, +/area/station/maintenance/port) +"rmx" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark, +/area/station/security/range) +"rmz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/security/processing) +"rmG" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/machinery/vending/cigarette, +/turf/open/floor/glass/reinforced, +/area/station/command) +"rmP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rmS" = ( +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Assistant's Room" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rmW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"rmX" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Secondary Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/effect/mapping_helpers/airlock/access/any/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"rna" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lab) +"rnp" = ( +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/fore) +"rnu" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"rnz" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"rnA" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/item/food/grown/banana, +/turf/open/floor/grass, +/area/station/medical/virology) +"rnC" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"rnQ" = ( +/obj/machinery/door/airlock/wood{ + name = "Meditation Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"rnW" = ( +/obj/structure/lattice, +/obj/item/storage/bag/money, +/turf/open/space/basic, +/area/space/nearstation) +"rnY" = ( +/obj/structure/cable, +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rob" = ( +/obj/effect/spawner/random/engineering/vending_restock, +/obj/machinery/light/small/red/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"roc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rod" = ( +/obj/effect/spawner/random/trash/graffiti{ + random_icon = 0 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"roe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"rof" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"roh" = ( +/obj/effect/decal/cleanable/confetti, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"roj" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/item/experi_scanner{ + pixel_y = -3 + }, +/obj/item/experi_scanner{ + pixel_y = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"rop" = ( +/obj/machinery/computer/upload/ai{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/door/window/right/directional/west{ + name = "Upload Console Window"; + req_access = list("ai_upload") + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload) +"rot" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"rov" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"roz" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = 26; + pixel_y = -6; + range = 7 + }, +/obj/machinery/button/door/directional/east{ + pixel_y = 5; + id = "Disposal Exit"; + name = "Disposal Vent Control"; + req_access = list("maint_tunnels") + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/disposal) +"roF" = ( +/obj/machinery/door/airlock/public{ + name = "Restroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"roG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/button/elevator/directional/north{ + id = "SecElevator" + }, +/obj/machinery/lift_indicator/directional/north{ + pixel_x = -1; + pixel_y = 31; + linked_elevator_id = "SecElevator" + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/security/office) +"roN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"roO" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"roQ" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/structure/sign/poster/official/build/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"roW" = ( +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"roX" = ( +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rpc" = ( +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 8 + }, +/area/station/commons/lounge) +"rpg" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/ai_all, +/obj/effect/turf_decal/trimline/white/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"rph" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw/style_2, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/command) +"rpj" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/button/elevator/directional/west{ + id = "BridgeElevator" + }, +/obj/machinery/lift_indicator/directional/west{ + pixel_x = -33; + pixel_y = -1; + linked_elevator_id = "BridgeElevator" + }, +/obj/machinery/door/window/elevator/left/directional/south{ + transport_linked_id = "BridgeElevator"; + elevator_mode = 1 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"rpn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/bookcase/random, +/obj/machinery/digital_clock/directional/north, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses"; + pixel_y = 15 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"rpo" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"rpt" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/item/stock_parts/power_store/cell/high, +/obj/machinery/cell_charger, +/obj/item/multitool, +/obj/item/stack/cable_coil, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rpv" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + name = "Red Team"; + id = "laserred" + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"rpw" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"rpD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner, +/area/station/engineering/engine_smes) +"rpF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"rpH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/holding_cell) +"rpI" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"rpO" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"rpU" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/glass/reinforced, +/area/station/security/warden) +"rpV" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rqh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"rqi" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/fire/directional/south, +/obj/effect/turf_decal/bot_white, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"rqk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rqm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"rqn" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "medsecprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -2; + req_access = list("security") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"rqr" = ( +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/computer/security/telescreen/engine/directional/north, +/turf/open/floor/iron/dark/textured_corner, +/area/station/command/heads_quarters/ce) +"rqs" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"rqv" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/white, +/area/station/science/research) +"rqz" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"rqD" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/starboard) +"rqR" = ( +/obj/effect/decal/cleanable/rubble, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"rqT" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Ordnance Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/ordnance, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rqZ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"rra" = ( +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/library) +"rrg" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/disposal) +"rrk" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rrs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"rrv" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"rrz" = ( +/turf/open/floor/carpet, +/area/station/cargo/mining_breakroom) +"rrA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"rrC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/north{ + dir = 9; + network = list("minisat") + }, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"rrD" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"rrF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"rrG" = ( +/obj/machinery/light/directional/east{ + color = "#ffcc99" + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/table/wood/fancy/black, +/obj/item/plate/small{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"rrI" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"rrS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command) +"rrU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"rrV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/banner/medical/mundane, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"rrW" = ( +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/glass/reinforced, +/area/station/medical/treatment_center) +"rrY" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/side/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rsv" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/wheelys/rollerskates, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/item/toy/sword, +/obj/item/toy/xmas_cracker, +/obj/item/clothing/mask/party_horn, +/turf/open/floor/carpet/neon/simple/white, +/area/station/maintenance/starboard/central) +"rsx" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"rsG" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"rsJ" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/command) +"rsN" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rsQ" = ( +/mob/living/basic/butterfly, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/greenroom) +"rsZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rta" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"rtg" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rtm" = ( +/obj/item/storage/briefcase/secure{ + pixel_y = 16 + }, +/obj/item/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rtn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rty" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rtA" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"rtB" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"rtK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig/lower) +"rtM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"rtO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"rtR" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rtW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"ruh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + color = "#36373a" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"rum" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rur" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"rut" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ruD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"ruF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ruK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"ruM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/arrow_ccw{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/secondary/service) +"ruU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/mid_joiner, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/warehouse) +"ruY" = ( +/obj/structure/chair/sofa/left, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/fore) +"rvb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/item/trash/fleet_ration, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/smooth_edge, +/area/station/maintenance/port/aft) +"rvc" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"rvl" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green, +/obj/structure/railing, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"rvu" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/bamboo/tatami/black, +/area/station/maintenance/starboard/central) +"rvy" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"rvD" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/sign/warning/engine_safety/directional/north, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/central) +"rvS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) +"rvZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/library/lounge) +"rwc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rwe" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"rwj" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/machinery/newscaster/directional/south, +/obj/machinery/disposal/bin{ + pixel_x = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"rwl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rwz" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rwF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rwI" = ( +/obj/machinery/button/door/directional/north{ + id = "medprivacy"; + name = "Medbay Shutters Control"; + pixel_x = -6; + pixel_y = 24; + req_access = list("medical") + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/bed/medical, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north{ + pixel_x = 6; + pixel_y = 24 + }, +/obj/item/bedsheet/medical{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"rwS" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"rwV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command) +"rwW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/warning/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"rwZ" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/parquet, +/area/station/maintenance/starboard/central) +"rxi" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/engineering/storage) +"rxj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + plane = -3 + }, +/mob/living/basic/rabbit{ + name = "Antonio" + }, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"rxk" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/cargo/lobby) +"rxp" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"rxr" = ( +/obj/machinery/teleport/hub, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"rxz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Filter" + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rxB" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rxF" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"rxL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"rxM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/sofa/bamboo/right{ + dir = 4 + }, +/obj/item/cigbutt/roach, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/sign/warning/yes_smoking/circle/directional/south, +/obj/item/cigarette/rollie/cannabis{ + pixel_x = 0; + pixel_y = 10 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"rxS" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"rxV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/starboard) +"rxX" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"rye" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"ryh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"ryk" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/fore) +"rym" = ( +/turf/open/openspace, +/area/station/service/chapel/funeral) +"ryt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/flora/rock/pile/jungle/large/style_random, +/turf/open/floor/glass/reinforced/plasma/airless, +/area/space/nearstation) +"ryu" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"ryz" = ( +/obj/structure/sign/poster/contraband/smoke/directional/north, +/obj/effect/spawner/random/trash/cigbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ryG" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/tree/jungle/small/style_4, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/service/library/upper) +"ryH" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/maintenance/central) +"ryJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"ryL" = ( +/obj/structure/railing, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/maintenance/port) +"ryQ" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"ryU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"ryV" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"rza" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/safety_internals/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/door/window/left/directional/north{ + name = "Shield Wall Generator Storage"; + req_access = list("teleporter") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"rzd" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/office) +"rzg" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"rzi" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f" + }, +/area/station/command/heads_quarters/captain) +"rzA" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance) +"rzE" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"rzH" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/command) +"rzI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rzW" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/green, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"rAc" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"rAm" = ( +/obj/structure/broken_flooring/singular/always_floorplane/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rAq" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/port/fore) +"rAu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rAv" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"rAw" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"rAz" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"rAC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/machinery/door/window/left/directional/south{ + name = "Shooting Range" + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/range) +"rAE" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/east, +/obj/structure/cable, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rAJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"rAK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"rAM" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"rAN" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/structure/flora/bush/snow/style_random, +/obj/structure/flora/rock/pile/icy/style_random, +/obj/structure/flora/grass/both/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"rAY" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"rAZ" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rBa" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"rBe" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rBi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"rBk" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig) +"rBm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"rBC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"rBD" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rBR" = ( +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"rBV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar{ + pixel_y = 5 + }, +/obj/item/radio{ + pixel_y = 7 + }, +/obj/item/storage/dice{ + pixel_x = 14; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"rCc" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/commons/dorms) +"rCf" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/ai_monitored/turret_protected/aisat/service) +"rCi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"rCn" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/contraband/space_cube/directional/west, +/turf/open/floor/carpet/neon/simple/violet, +/area/station/maintenance/starboard/central) +"rCr" = ( +/obj/machinery/door/airlock/medical{ + name = "Primary Surgical Theatre" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/duct, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/surgery/theatre) +"rCs" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"rCx" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher, +/obj/item/extinguisher{ + pixel_y = 2; + pixel_x = -4 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rCz" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rCE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"rCH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/hfr_room) +"rCK" = ( +/turf/closed/wall, +/area/station/science/breakroom) +"rCP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"rCQ" = ( +/obj/item/storage/bag/books, +/obj/structure/marker_beacon/bronze, +/turf/open/floor/carpet/red, +/area/station/maintenance/port/aft) +"rCU" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/security/lockers) +"rCV" = ( +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/both/style_2, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/flora/rock/pile, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"rCW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prisoner Education Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"rCX" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/edge, +/area/station/cargo/storage) +"rCZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"rDe" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/structure/tank_holder, +/obj/machinery/light/small/red/dim/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/science) +"rDh" = ( +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/break_room) +"rDi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"rDj" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rDm" = ( +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"rDt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"rDy" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"rDD" = ( +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/obj/structure/railing{ + dir = 8; + color = "#36373a" + }, +/turf/open/floor/iron/stairs/right{ + color = "#3d3e42" + }, +/area/station/service/theater_dressing) +"rDG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"rDP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"rDU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"rDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/maintenance/fore/greater) +"rEc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/storage/medkit/emergency, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"rEg" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"rEh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/bookcase/random/reference, +/obj/machinery/status_display/evac/directional/north, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses"; + pixel_y = 15 + }, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"rEl" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp/style_2, +/obj/machinery/light/floor, +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/grass, +/area/station/medical/lower) +"rEm" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rEt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/records/medical{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"rEu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"rEy" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"rEz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west{ + network = list("prison") + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rEA" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rEF" = ( +/obj/structure/railing/corner/end{ + dir = 8; + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"rEI" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/west, +/obj/machinery/digital_clock/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"rEU" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/sign/clock/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"rEV" = ( +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload Turret Control"; + pixel_y = 28 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"rEX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"rFa" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8; + pixel_x = -6 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"rFc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"rFg" = ( +/obj/effect/turf_decal/siding/brown, +/obj/item/exodrone, +/obj/machinery/exodrone_launcher, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"rFr" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"rFt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/bush/jungle/a/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rFu" = ( +/obj/structure/flora/rock/icy/style_3, +/obj/structure/flora/tree/dead/style_3{ + pixel_x = 0; + pixel_y = -8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/structure/marker_beacon/teal, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/maintenance/port) +"rFy" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/broken_flooring/pile/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rFA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"rFD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/sign/departments/cargo/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/lobby) +"rFH" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "garbage" + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"rFK" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"rFX" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"rGg" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rGm" = ( +/turf/closed/wall, +/area/station/cargo/mining_breakroom) +"rGr" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"rGB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"rGC" = ( +/obj/structure/sign/poster/random/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"rGN" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"rGO" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"rGQ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"rGS" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","engine") + }, +/obj/machinery/light/dim/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"rHb" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"rHc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rHf" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/central) +"rHg" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rHo" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/research) +"rHq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/central) +"rHw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"rHz" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"rHF" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/textured_large, +/area/station/science/lab) +"rHH" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/medical/lower) +"rHM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"rHO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"rHT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/minibar) +"rHU" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"rHZ" = ( +/obj/machinery/holopad, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"rIb" = ( +/obj/docking_port/stationary/laborcamp_home/nebula{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rIf" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"rIl" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters"; + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"rIn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"rIt" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/structure/filingcabinet, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"rIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rIC" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/rack, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/sheet/iron/ten, +/obj/item/stack/sheet/glass{ + amount = 25; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rIE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"rIK" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/service/cafeteria) +"rIL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 10 + }, +/obj/item/electropack, +/obj/item/assembly/igniter, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rIO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"rIP" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/break_room) +"rIW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"rIY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"rJa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rJc" = ( +/obj/item/kitchen/fork/plastic, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"rJf" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/aft/lesser) +"rJg" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"rJk" = ( +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rJr" = ( +/obj/structure/table/reinforced, +/obj/item/mod/module/plasma_stabilizer, +/obj/item/mod/module/signlang_radio, +/obj/item/mod/module/thermal_regulator, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"rJH" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rJM" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/obj/machinery/light/dim/directional/south, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"rJQ" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rJV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/sec{ + pixel_y = 7 + }, +/obj/item/flashlight/seclite{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"rJW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rKa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/banner/command/mundane, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"rKd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/internals, +/obj/effect/spawner/random/maintenance, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"rKg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/smooth_corner{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"rKj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/textured_corner{ + dir = 1 + }, +/area/station/hallway/primary/aft) +"rKp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"rKr" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"rKA" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/ai_upload) +"rKH" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rKO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/sorting) +"rKQ" = ( +/obj/machinery/bookbinder, +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library/printer) +"rKR" = ( +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/structure/railing/corner/end/flip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"rKY" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"rLa" = ( +/obj/item/toy/plush/shark, +/turf/open/water/beach, +/area/station/commons/fitness/recreation/pool) +"rLc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"rLf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/engineering/atmos/pumproom) +"rLj" = ( +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/marker_beacon/lime, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/engineering/supermatter/room/upper) +"rLq" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 17; + pixel_x = 4 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"rLu" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/maintenance/starboard/central) +"rLv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "conference_blast"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/meeting_room) +"rLw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"rLx" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Xenobio Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/science/xenobiology, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rLy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rLF" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bamboo{ + dir = 8 + }, +/obj/item/fishing_rod{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/holofloor/wood, +/area/station/ai_monitored/aisat/exterior) +"rLH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/central) +"rLL" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/prison) +"rLM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/prison/work) +"rMd" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"rMe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"rMh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/glass/mug{ + pixel_x = 9 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"rMi" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"rMk" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"rMn" = ( +/obj/structure/railing{ + dir = 1; + pixel_y = -7 + }, +/obj/effect/spawner/random/entertainment/toy_figure{ + pixel_y = 37; + pixel_x = 11 + }, +/obj/structure/fireplace, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/stone, +/area/station/commons/dorms) +"rMp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"rMq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/cable, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"rMt" = ( +/obj/structure/cable, +/obj/item/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/fore) +"rMw" = ( +/obj/structure/cable, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/starboard) +"rMy" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/science/breakroom) +"rMz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"rMC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"rMK" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"rMV" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rMY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"rNc" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rNe" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/security/prison/workout) +"rNj" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rNl" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rNp" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"rNr" = ( +/obj/structure/frame/machine/secured, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"rNA" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"rNB" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"rNJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/sorting) +"rNL" = ( +/obj/machinery/door/airlock{ + id_tag = "commissarydoor"; + name = "Commissary" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"rNP" = ( +/obj/structure/railing/corner, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rNU" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark, +/area/station/security/office) +"rNZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"rOb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"rOc" = ( +/obj/effect/turf_decal/trimline/red/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"rOd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"rOl" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("security"); + name = "Medical Cell"; + id = "medcell" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"rOt" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/construction/mining/aux_base) +"rOu" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"rOz" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/station/maintenance/port) +"rOG" = ( +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"rOK" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rOL" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"rOY" = ( +/obj/item/clipboard, +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/reagent_containers/pill/patch/aiuri, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"rPe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + dir = 9; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rPj" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rPl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Quarters" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"rPm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rPv" = ( +/turf/closed/wall, +/area/station/maintenance/radshelter/civil) +"rPD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rPE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"rPF" = ( +/turf/closed/wall, +/area/station/cargo/breakroom) +"rPR" = ( +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/obj/effect/landmark/navigate_destination/bar, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"rPT" = ( +/obj/effect/turf_decal/arrows{ + dir = 1; + pixel_y = -15 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/cargo/storage) +"rPV" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"rQa" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"rQb" = ( +/obj/structure/table/reinforced/plastitaniumglass, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"rQc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"rQj" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/hedge, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"rQk" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"rQo" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/aquarium_kit, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"rQr" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"rQt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"rQw" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/sign/poster/official/moth_delam/directional/east, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"rQy" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"rQI" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"rQL" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Xenobiology Lab - Test Chamber"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rQP" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/eva) +"rQQ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"rQU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"rQZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"rRd" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/department/bridge) +"rRe" = ( +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"rRm" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"rRn" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rRr" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/hfr_room) +"rRu" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"rRw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"rRx" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"rRA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"rRE" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rRL" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rRT" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/lower) +"rRY" = ( +/obj/structure/table/reinforced, +/obj/item/newspaper{ + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/machinery/turretid{ + control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos"; + name = "Atmospherics Turret Control"; + req_access = list("minisat"); + pixel_y = -27 + }, +/obj/machinery/digital_clock/directional/west, +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"rSd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"rSe" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/prison/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"rSf" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"rSj" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rSk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"rSp" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"rSs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"rSt" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"rSu" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"rSE" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"rSF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/starboard/central) +"rSQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rTd" = ( +/mob/living/basic/butterfly, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/service/greenroom) +"rTf" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/white, +/area/station/security/medical) +"rTl" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/command/heads_quarters/hos) +"rTn" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/north{ + name = "Shield Wall Generator Storage"; + req_access = list("teleporter") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/teleporter) +"rTt" = ( +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"rTw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"rTx" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rTA" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"rTD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"rTK" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"rTM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/steam_vent, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"rTP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/brown, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"rTQ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"rTR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rTS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"rTV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"rTY" = ( +/obj/structure/flora/grass/green/style_random, +/obj/structure/flora/bush/snow, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"rUa" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"rUg" = ( +/obj/structure/table/reinforced, +/obj/item/surgery_tray/full, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/medical) +"rUp" = ( +/obj/structure/hedge, +/obj/machinery/light/small/dim/directional/north, +/obj/structure/railing, +/turf/open/misc/grass, +/area/station/command/meeting_room) +"rUv" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/moth_piping/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"rUy" = ( +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/command) +"rUH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rUO" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rUT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/item/crowbar/hammer, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/interrogation) +"rUZ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 6 + }, +/obj/structure/sign/poster/official/the_owl/directional/south, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"rVd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "medprivacy"; + name = "Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/medical/treatment_center) +"rVf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"rVg" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"rVi" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"rVn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"rVy" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"rVA" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Arena Access" + }, +/obj/structure/broken_flooring/side/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rVD" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/science) +"rVK" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"rVN" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"rVQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rVV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rVX" = ( +/obj/structure/table/wood/fancy/red, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"rWr" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/floor, +/mob/living/basic/slime, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"rWu" = ( +/obj/machinery/pdapainter, +/obj/item/toy/figure/hop{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/toy/figure/ian{ + pixel_y = 9; + pixel_x = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"rWC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"rWJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"rWM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/tank_holder/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"rWS" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rWW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"rWX" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/button/door/directional/east{ + normaldoorcontrol = 1; + id = "Toilet1"; + name = "Lock Control"; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"rXa" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/item/clipboard{ + pixel_y = -1; + pixel_x = 2 + }, +/obj/item/pen, +/turf/open/floor/iron/white, +/area/station/science/lab) +"rXe" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"rXh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/security/breakroom) +"rXi" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Curtains"; + id = "radioroom" + }, +/obj/effect/mapping_helpers/damaged_window, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"rXm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"rXn" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/toy/figure/md{ + pixel_y = 17; + pixel_x = -1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/storage) +"rXo" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"rXs" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"rXt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/cup/glass/drinkingglass, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"rXx" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/port) +"rXz" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"rXA" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"rXB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"rXF" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/curtain, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"rXG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"rXN" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"rXO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/pipe_painter, +/obj/item/stack/package_wrap, +/obj/item/storage/box/lights/mixed, +/obj/item/gps, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"rXP" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/machinery/computer/exodrone_control_console, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"rXU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"rXZ" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"rYz" = ( +/obj/machinery/vending/assist, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"rYA" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"rYC" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/sign/poster/ripped/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"rYM" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"rYP" = ( +/turf/open/floor/glass/reinforced, +/area/station/ai_monitored/security/armory) +"rYR" = ( +/turf/closed/wall/r_wall, +/area/station/tcommsat/server) +"rYU" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig/lower) +"rYZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/teleporter) +"rZd" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"rZe" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/fore) +"rZf" = ( +/obj/machinery/holopad, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/glass/reinforced, +/area/station/engineering/engine_smes) +"rZi" = ( +/obj/structure/barricade/sandbags{ + color = "#0095ff" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"rZj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{ + dir = 1 + }, +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"rZl" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig/lower) +"rZm" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"rZn" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"rZr" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -26; + pixel_y = -6 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"rZu" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"rZw" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/item/banner/command/mundane, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"rZy" = ( +/obj/structure/bed/medical{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"rZz" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"rZD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"rZR" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"rZS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"rZU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"rZV" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"rZW" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"rZX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"rZY" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/decal/cleanable/confetti, +/obj/machinery/digital_clock/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"saa" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"sae" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"saf" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/mob/living/basic/mouse/brown/tom, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"sai" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"sam" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/cargo/miningoffice) +"sao" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation/lasertag) +"saq" = ( +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sar" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"sat" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"saw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"sax" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"saz" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"saC" = ( +/obj/machinery/navbeacon{ + location = "C4-Port-Central-Fw"; + codes_txt = "patrol;next_patrol=P1-Port-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"saI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"saO" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + name = "Padded Cell Bolts Control"; + id = "padded"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = -24; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light_switch/directional/west{ + pixel_x = -26; + pixel_y = -6 + }, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"saR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"saS" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"saU" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/textured_large, +/area/station/security/execution/transfer) +"saW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"sbg" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sbl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"sbo" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sbp" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"sbs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"sbE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"sbL" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"scf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"sco" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"scr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"scx" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/oven/range, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"scC" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"scI" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/commons/fitness) +"scL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"scV" = ( +/obj/structure/flora/bush/large/style_3, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/commons/dorms) +"scZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/security/execution/education) +"sdb" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"sdf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"sdi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Cooling Loop Bypass" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sdm" = ( +/turf/closed/wall, +/area/station/commons/vacant_room/commissary) +"sdr" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"sdN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"sdR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"sdV" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sdW" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"sdY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"see" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"seg" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"sep" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"ser" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/dorms) +"ses" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"sev" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock"; + space_dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"seB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"seD" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"seF" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/service/janitor) +"seJ" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/poster/random_contraband, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"seN" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lantern{ + start_on = 1 + }, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"seO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/central) +"seU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"sfi" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"sfj" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"sfk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"sfn" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"sfs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"sfI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 8 + }, +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"sfJ" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Atmospherics Delivery"; + req_access = list("atmospherics") + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage/gas) +"sfL" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"sfP" = ( +/obj/effect/turf_decal/trimline/red/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"sfQ" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"sfS" = ( +/obj/machinery/newscaster/directional/south, +/obj/item/storage/crayons, +/obj/item/toy/crayon/spraycan{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/table/wood/fancy, +/obj/item/toy/crayon/spraycan{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"sfV" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/machinery/microwave, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"sfW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"sfX" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/command_all, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"sge" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"sgm" = ( +/turf/closed/wall, +/area/station/medical/cryo) +"sgn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"sgp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured, +/area/station/security/warden) +"sgx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"sgz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"sgB" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"sgE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/arrows{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"sgI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/meter/monitored/waste_loop, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/pumproom) +"sgK" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/bookbinder, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"sgL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/structure/flora/grass/jungle/b/style_4, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"sgS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"sgU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/radshelter/civil) +"sgX" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics Backroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"sgZ" = ( +/obj/item/clothing/mask/gas, +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/contraband/random/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port) +"sha" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"shg" = ( +/obj/structure/frame/machine, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"sho" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Base Construction" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"shs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"shy" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"shC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/central) +"shG" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"shQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/duct, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/restrooms) +"shW" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/bridge) +"sib" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/starboard/central) +"sie" = ( +/obj/structure/sign/poster/contraband/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"sir" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"siA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "sciprivacy"; + name = "Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/science/research) +"siF" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"siM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/mail_sorting/security/detectives_office, +/obj/structure/disposalpipe/sorting/mail/flip{ + name = "Detective's Office Junction" + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"siN" = ( +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"siR" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/department/medical) +"sjb" = ( +/turf/closed/wall, +/area/station/science/lab) +"sjc" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"sjk" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/tank_holder/extinguisher, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"sjr" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/modular_computer/preset/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"sjs" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"sjx" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"sjD" = ( +/obj/structure/flora/rock/style_3, +/obj/item/flashlight/lantern{ + pixel_x = -2; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/rubble, +/obj/machinery/button/door/directional/south{ + req_access = list("ai_upload"); + id = "AIgarden"; + name = "Zen Garden Window Shutters Control"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/door/directional/south{ + req_access = list("ai_upload"); + id = "AIgarden2"; + name = "Zen Garden Door Shutters Control"; + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/stone, +/area/station/ai_monitored/aisat/exterior) +"sjI" = ( +/obj/structure/cable, +/obj/machinery/light/small/red/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sjK" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/white/small, +/area/station/medical/patients_rooms) +"sjU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"sjW" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"sjY" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"skd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"skf" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"skm" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"sko" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"skq" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/carpet, +/area/station/science/breakroom) +"skB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"skG" = ( +/obj/item/kirbyplants/organic/plant10, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/bamboo/tatami/black, +/area/station/maintenance/starboard/central) +"skL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"skU" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"skW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"skZ" = ( +/obj/structure/grille/broken{ + icon_state = "ladder10"; + pixel_y = 4; + name = "Pool Ladder"; + desc = "A slippy pool ladder. Be Careful!"; + max_integrity = 100 + }, +/turf/open/water/beach, +/area/station/commons/fitness/recreation/pool) +"sle" = ( +/obj/structure/hedge/opaque, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured, +/area/station/cargo/office) +"sli" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/commons/dorms) +"sls" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/railing, +/obj/machinery/light/small/red/directional/north, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/central) +"slD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"slF" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"slL" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/hedge, +/obj/structure/sign/clock/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"slM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/item/pen/fountain{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"slP" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"slS" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"slX" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"slZ" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"smp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"sms" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"smy" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"smz" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"smB" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"smO" = ( +/obj/machinery/digital_clock/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"smT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"smW" = ( +/obj/structure/railing, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"smX" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/security/brig) +"sna" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"snd" = ( +/obj/machinery/airalarm/directional/south, +/obj/item/reagent_containers/cup/watering_can, +/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"snf" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"snn" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"sno" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"snr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/science/lab) +"snt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"snD" = ( +/obj/structure/bed/dogbed/mcgriff, +/mob/living/basic/pet/dog/pug/mcgriff, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"snL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"snV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","engine") + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"snZ" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/trimline/dark_red, +/obj/machinery/light/small/directional/east, +/obj/effect/spawner/random/clothing/gloves, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"soc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "secmechbay"; + name = "Security Mech Garage Door Controls"; + req_access = list("security") + }, +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/office) +"sof" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"soi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"sos" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"sot" = ( +/obj/effect/landmark/start/hangover, +/turf/open/water/beach, +/area/station/commons/fitness/recreation/pool) +"sou" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen/fountain, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"soA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage/gas) +"soK" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"soN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"soO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/storage) +"soQ" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/dark_red/anticorner, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/white/textured_corner{ + dir = 1 + }, +/area/station/security/prison/workout) +"soR" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/prison) +"soU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"spa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"spf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"spj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"spm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/mannequin/plastic, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"sps" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Holodeck - Aft 2"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"spt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"spI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/lockers) +"spK" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/machinery/light/floor, +/turf/open/floor/grass, +/area/station/medical/lower) +"spU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/service/chapel) +"sqc" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"sqf" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"sqi" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"sqo" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"sqx" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"sqH" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"sqI" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/jacket/det_suit, +/obj/item/clothing/head/fedora/det_hat, +/obj/item/toy/crayon/white, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"sqO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/department/security) +"srd" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"srf" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"srl" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"srm" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"srs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"srt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/photocopier, +/obj/item/toy/figure/hos{ + pixel_y = 12; + pixel_x = 3 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"sry" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"srA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"srG" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 locker" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"srH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"srN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/science) +"ssh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sss" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"ssw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"ssz" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/maintenance/starboard/aft) +"ssE" = ( +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/break_room) +"ssM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"ssQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"ssR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ssZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/holding_cell) +"sti" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"stk" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/glass, +/area/station/service/library/upper) +"stl" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/command) +"sto" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"stp" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos) +"sts" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"stu" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"stB" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/coconuts, +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/science/genetics) +"stD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/broken_flooring/singular/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"stE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"stH" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"stP" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/port) +"stR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"stT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"stZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison) +"sub" = ( +/turf/open/floor/iron/stairs/right{ + color = "#3d3e42" + }, +/area/station/service/theater) +"sud" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/project) +"sui" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/greater) +"suj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sul" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"sur" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/command) +"suu" = ( +/obj/structure/table/wood/poker, +/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/stack/spacecash/c10{ + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 1; + pixel_x = 6 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"suA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/aft/lesser) +"suB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"suD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"suG" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/central) +"suM" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/light/small/red/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"suN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"suX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"svc" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/station/command) +"svi" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"svu" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"svv" = ( +/turf/open/openspace, +/area/station/science/research) +"svD" = ( +/obj/machinery/light/floor, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "BridgeElevator" + }, +/obj/effect/abstract/elevator_music_zone{ + linked_elevator_id = "BridgeElevator" + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"svJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"svK" = ( +/obj/structure/table, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/grapes, +/obj/item/food/grown/banana, +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"svL" = ( +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"svN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"svQ" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/massdriver_trash, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"svU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"svW" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/engineering/atmos) +"swh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/musician/piano, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/directional/south{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"swk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"sws" = ( +/obj/structure/frame/machine, +/obj/item/shard, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"swv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"swD" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/plating, +/area/station/maintenance/port) +"swK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/science/server) +"swL" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "atmoslock"; + name = "Atmospherics Lockdown"; + req_access = list("atmospherics") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"swN" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"swP" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/a/style_3, +/obj/structure/flora/bush/flowers_br, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"swT" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/table, +/obj/item/toy/cards/deck/blank{ + pixel_y = 3 + }, +/obj/item/toy/cards/deck{ + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"swY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 9; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/wood/large, +/area/station/service/theater) +"sxd" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"sxf" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"sxs" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/security/brig) +"sxx" = ( +/obj/structure/sign/departments/botany/botany/alt3{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/light/no_nightlight/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"sxy" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"sxz" = ( +/obj/machinery/vending/games, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"sxN" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"sxO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/mid_joiner, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/warehouse) +"sxP" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"sxT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/engineering/atmos/hfr_room) +"sxX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/lockers) +"sxY" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/donut_box{ + pixel_y = 7 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"sxZ" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/modular_computer/laptop{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"syc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"syw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/hallway/secondary/service) +"syx" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"syB" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"syJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"syK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/office) +"syT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"syU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"szc" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"szi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"szp" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/dark/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"szt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"szF" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/dark/end, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"szH" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"szM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"szN" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/bridge) +"szU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"szW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"szY" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/holopad, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"sAc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/central) +"sAi" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"sAk" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/upper) +"sAm" = ( +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sAp" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"sAt" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"sAD" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"sAF" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sAG" = ( +/obj/effect/turf_decal/arrows, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/cargo/storage) +"sAH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/greenglow, +/turf/open/misc/dirt/dark/station/airless, +/area/space/nearstation) +"sAS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/garbage, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sAV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/aft/lesser) +"sBb" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"sBr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/stairs{ + dir = 1 + }, +/area/station/science/ordnance) +"sBu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"sBw" = ( +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"sBy" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"sBF" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"sBH" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Supply Door Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/station/cargo/storage) +"sBO" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port) +"sBP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sBQ" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sBT" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"sBX" = ( +/obj/structure/window/spawner/directional/west, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"sBZ" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sCd" = ( +/obj/structure/chair/stool/directional/west, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/fore/lesser) +"sCe" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"sCf" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"sCi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"sCm" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"sCp" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sCs" = ( +/obj/structure/fireplace{ + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1; + pixel_x = -16; + pixel_y = -7 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/stone, +/area/station/commons/dorms) +"sCu" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"sCy" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/maintenance/starboard/aft) +"sCA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"sCH" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/light_switch/directional/south, +/obj/machinery/plumbing/sender, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"sCI" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sCJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"sCN" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north{ + dir = 9; + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"sCX" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/rack, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/multiver, +/obj/machinery/vending/wallmed/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"sDa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sDn" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/prison) +"sDr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"sDB" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Quartermaster Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/supply/qm_office, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"sDD" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sDH" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"sDN" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sDO" = ( +/obj/structure/sign/poster/official/get_your_legs/directional/north, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"sDR" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"sDT" = ( +/obj/structure/sign/departments/lawyer/directional/north, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"sDX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"sDY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"sEh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/incident_display/delam/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sEi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/chair/wood/wings, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"sEk" = ( +/turf/open/floor/glass/reinforced, +/area/station/engineering/supermatter/room/upper) +"sEn" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/bush/sunny/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sEr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sEB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/desk_bell, +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"sEF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"sEG" = ( +/obj/machinery/oven/range, +/obj/structure/sign/poster/contraband/eat/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"sEL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/door/airlock/public{ + name = "Restroom" + }, +/turf/open/floor/iron/white/diagonal, +/area/station/science/breakroom) +"sEM" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/prison) +"sEP" = ( +/obj/structure/rack, +/obj/item/fishing_rod{ + pixel_x = 2 + }, +/obj/item/fishing_rod{ + pixel_x = -2 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"sEQ" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"sEZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/kirbyplants/organic/plant1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/commons/fitness/recreation) +"sFb" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"sFc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"sFf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd","xeno") + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"sFs" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"sFv" = ( +/obj/structure/cable, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"sFw" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"sFz" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/cargo/lobby) +"sFC" = ( +/obj/structure/rack, +/obj/machinery/newscaster/directional/east, +/obj/item/storage/belt/fannypack/blue, +/obj/item/storage/backpack{ + icon_state = "backpack-banner_blue"; + name = "Blue Team" + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"sFM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/dim/directional/north, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/greater) +"sFQ" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"sFS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sFX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sGe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/sofa/bench/right, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"sGg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/machinery/door/window/left/directional/north, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"sGi" = ( +/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"sGo" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sGp" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/tile/dark/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sGx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/small/directional/east, +/obj/structure/rack, +/obj/item/training_toolbox{ + pixel_y = 5 + }, +/obj/item/training_toolbox{ + pixel_y = -2 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"sGy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater) +"sGz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"sGD" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lower) +"sGL" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"sGN" = ( +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sGQ" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"sGT" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"sGY" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"sHb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/command/hop, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"sHl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"sHt" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/effect/turf_decal/bot_white, +/obj/effect/food_cart_stand, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"sHB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/main) +"sHD" = ( +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"sHI" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"sHL" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sign/poster/official/festive/directional/south, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/security/range) +"sHR" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"sHT" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"sIc" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"sId" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/official/state_laws/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"sIe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sIh" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"sIr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"sIs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"sIK" = ( +/obj/item/kirbyplants/random, +/obj/structure/railing, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"sIT" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sIZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "capoffice"; + name = "Captain's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/captain) +"sJl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/bookcase/random, +/obj/item/clothing/head/cowboy{ + pixel_y = 16 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"sJm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"sJu" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"sJy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/clothing/head/cone, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sJF" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sJN" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"sJY" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/structure/noticeboard/directional/south{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"sJZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sKd" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"sKf" = ( +/obj/structure/chair/sofa/bamboo/left{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"sKi" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"sKj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sKq" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/railing, +/obj/machinery/deepfryer, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"sKr" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Departure Lounge Security Post" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"sKt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/digital_clock/directional/north, +/obj/structure/chair/pew/right, +/obj/item/newspaper, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"sKx" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/flora/grass/jungle/b/style_5, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation/pool) +"sKE" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/storage/belt/utility{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/storage/belt/utility{ + pixel_y = -2; + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"sKF" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"sKH" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"sKJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"sKL" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"sKS" = ( +/obj/structure/flora/grass/green/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"sKZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"sLa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sLc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sLg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sLi" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"sLs" = ( +/obj/machinery/holopad, +/obj/effect/landmark/navigate_destination/dorms, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"sLu" = ( +/obj/structure/cable, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/security/prison) +"sLA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/security/eva) +"sLD" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/rock/pile/style_2, +/mob/living/basic/butterfly, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/chapel) +"sLE" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"sLK" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"sLM" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/bottle/kahlua{ + pixel_y = 17; + pixel_x = -7 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = 7; + pixel_y = 18 + }, +/obj/item/reagent_containers/cup/glass/bottle/vermouth{ + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/sake{ + pixel_y = 5; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/shochu{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/railing, +/obj/machinery/light/small/directional/south, +/obj/structure/marker_beacon/teal, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"sMa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/effect/turf_decal/siding/blue, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"sMd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/aquarium/prefilled, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"sMe" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) +"sMf" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/right{ + dir = 8; + color = "#3d3e42" + }, +/area/station/maintenance/aft/lesser) +"sMh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"sMq" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"sMA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"sMC" = ( +/turf/closed/wall/r_wall, +/area/station/science/lower) +"sMS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"sNa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/decal/cleanable/wrapping/pinata, +/turf/open/floor/plating, +/area/station/maintenance/port) +"sNb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"sNe" = ( +/turf/open/floor/iron/stairs/left{ + color = "#5d341f" + }, +/area/station/command/heads_quarters/captain) +"sNi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"sNv" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/navbeacon{ + location = "F9-Cargo"; + codes_txt = "patrol;next_patrol=F10-Cargo" + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"sNy" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/button/ignition{ + id = "executionburn"; + name = "Justice Ignition Switch"; + pixel_x = 37; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + name = "Justice Flash Control"; + pixel_x = 26; + pixel_y = 6; + req_access = list("security") + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door/directional/east{ + id = "SecJusticeVent"; + name = "Justice Vent Control"; + req_access = list("armory"); + pixel_x = 37; + pixel_y = -6 + }, +/obj/machinery/button/door/directional/east{ + req_access = list("brig"); + name = "Justice Area Lockdown"; + id = "SecJusticeChamber"; + pixel_x = 26; + pixel_y = -6 + }, +/obj/machinery/computer/records/security/laptop, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"sNE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"sNI" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"sNK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/trash/mess, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/glass, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"sNN" = ( +/obj/machinery/flasher/directional/south{ + req_access = list("security"); + id = "justiceflash" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"sNU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"sNY" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"sOa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"sOf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = 8; + pixel_x = -1 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/department/bridge) +"sOg" = ( +/obj/machinery/button/door/directional/north{ + id = "roboticsprivacy"; + name = "Robotics Privacy Control"; + pixel_x = -5; + req_access = list("robotics"); + pixel_y = 28 + }, +/obj/item/key/atv{ + pixel_y = 32; + pixel_x = 5 + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/science/robotics/lab) +"sOu" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sOv" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/decal/cleanable/food/plant_smudge, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sOy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/chair/stool/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"sOz" = ( +/obj/structure/transport/linear/public, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "SecElevator" + }, +/obj/effect/abstract/elevator_music_zone{ + linked_elevator_id = "SecElevator" + }, +/obj/machinery/light/floor, +/turf/open/floor/plating/elevatorshaft, +/area/station/security/brig/lower) +"sOB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sOE" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"sOG" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"sOI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"sOJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/openspace, +/area/station/security/brig) +"sOT" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"sPc" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"sPe" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"sPf" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"sPh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/item/lighter/greyscale{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"sPt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/security/directional/east{ + pixel_y = 8 + }, +/obj/structure/sign/directions/command/directional/east, +/obj/structure/sign/directions/upload/directional/east{ + pixel_y = -8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"sPx" = ( +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/rack, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sPC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room/upper) +"sPD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"sPH" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/spawner/random/trash, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sPO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red, +/obj/structure/sign/calendar/directional/south, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/breakroom) +"sPP" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/toy/cards/deck/blank{ + pixel_y = 3 + }, +/obj/item/toy/cards/deck{ + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"sPU" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/frame/computer{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"sQa" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"sQi" = ( +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"sQl" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sQm" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/cafeteria) +"sQo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/dresser, +/obj/item/food/pie/cream{ + pixel_x = 0; + pixel_y = 11 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"sQr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"sQt" = ( +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/wtf_is_co2/directional/north, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"sQw" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/research) +"sQy" = ( +/turf/open/floor/carpet/red, +/area/station/maintenance/port/central) +"sQD" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"sQE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"sQI" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"sQR" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"sQY" = ( +/obj/structure/sign/warning/electric_shock/directional/west, +/obj/machinery/power/port_gen/pacman/pre_loaded, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sRa" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/railing/corner{ + dir = 1; + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"sRf" = ( +/obj/structure/cable, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/bridge) +"sRw" = ( +/turf/closed/wall, +/area/station/commons/lounge) +"sRJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"sRM" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) +"sRX" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/ai_monitored/turret_protected/ai) +"sSe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/storage) +"sSg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"sSi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/radiation/rad_area/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"sSj" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"sSq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/range) +"sSt" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"sSz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"sSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"sSH" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sSJ" = ( +/obj/structure/flora/tree/pine/style_3, +/obj/structure/marker_beacon/purple, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"sSL" = ( +/obj/structure/flora/rock/pile/jungle/style_4, +/obj/machinery/biogenerator, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"sSQ" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/machinery/jukebox/no_access{ + pixel_y = -5 + }, +/turf/open/floor/iron/dark, +/area/station/commons/lounge) +"sSU" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron, +/area/station/cargo/storage) +"sTe" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/iron/stairs/medium{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/kitchen/diner) +"sTf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/science/genetics) +"sTh" = ( +/obj/effect/turf_decal/siding/dark/end, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"sTl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"sTn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/power/smes, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/solars/starboard/fore) +"sTp" = ( +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"sTy" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sTz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/bluespace_vendor/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"sTA" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/item/clothing/glasses/hud/security/sunglasses{ + pixel_y = 14; + pixel_x = 5 + }, +/obj/item/radio/intercom/directional/north, +/obj/item/toy/figure/secofficer{ + pixel_y = 18; + pixel_x = -10 + }, +/obj/structure/bookcase/random/reference, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"sTF" = ( +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/command/storage/eva) +"sTG" = ( +/obj/item/banner/command/mundane, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"sTL" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sTP" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"sTT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sTW" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/hallway/secondary/command) +"sTX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/station/medical/break_room) +"sTZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security/engine, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"sUb" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos/project) +"sUe" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/engineering/break_room) +"sUh" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"sUj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sUm" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sUy" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"sUF" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/razor{ + pixel_x = -3 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"sUI" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lab) +"sUO" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics) +"sUS" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"sUW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"sVa" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/table/reinforced/rglass, +/obj/machinery/coffeemaker/impressa{ + pixel_x = 2 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"sVf" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"sVo" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/structure/noticeboard/rd{ + pixel_y = 32 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"sVs" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage_shared) +"sVv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"sVB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"sVD" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"sVF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"sVP" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"sVR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"sVU" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 1"; + id_tag = "Cell1" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"sVX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"sVZ" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/processing) +"sWb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/paper/stack, +/obj/structure/fluff/paper/stack{ + pixel_y = -24; + pixel_x = -9 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"sWk" = ( +/obj/structure/sign/clock/directional/east, +/turf/open/openspace, +/area/station/maintenance/starboard/fore) +"sWm" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"sWo" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"sWz" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/station/science/server) +"sWB" = ( +/obj/item/radio/intercom/chapel/directional/east, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"sWH" = ( +/obj/structure/sign/poster/official/random/directional/south, +/obj/structure/aquarium/prefilled, +/turf/open/floor/iron/dark/small, +/area/station/command/corporate_suite) +"sWI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"sWM" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"sWO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"sWQ" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/spawner/random/structure/closet_private, +/obj/machinery/digital_clock/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"sWX" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/computer/order_console/cook, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"sXa" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"sXb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"sXe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"sXg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"sXi" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/structure/desk_bell{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/hallway/secondary/command) +"sXk" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"sXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/item/clothing/suit/pillow_suit, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/fore) +"sXq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"sXt" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"sXu" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"sXz" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"sXE" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/fore) +"sXG" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"sXN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"sXQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/obj/machinery/light/no_nightlight/directional/south, +/obj/structure/sign/warning/secure_area/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"sXS" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/records/medical/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/machinery/requests_console/directional/south{ + name = "Morgue Requests Console"; + department = "Morgue" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"sXU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sXX" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"sYa" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"sYc" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/marker_beacon, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"sYg" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/structure/flora/rock/pile/icy, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/robotics/lab) +"sYi" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/caution/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/service/janitor) +"sYj" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/checker, +/area/station/maintenance/port/central) +"sYl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"sYw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"sYJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/departments/medbay/alt/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"sYK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"sYY" = ( +/obj/machinery/holopad, +/turf/open/floor/glass/reinforced, +/area/station/science/xenobiology/hallway) +"sYZ" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"sZr" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/aquarium/prefilled, +/turf/open/floor/iron/dark/small, +/area/station/command/corporate_suite) +"sZv" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"sZz" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/iron/dark/small, +/area/station/command) +"sZA" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"sZB" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/medical/pharmacy) +"sZD" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/corporate_suite) +"sZJ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"sZK" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/noticeboard/cmo{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"sZL" = ( +/obj/structure/ladder, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/commons/toilet/restrooms) +"sZM" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/minisat, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"sZP" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"sZT" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/item/hand_labeler_refill, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/random/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"sZV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"tag" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tak" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"tao" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"tat" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/white, +/area/station/science/lab) +"taD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"taG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "secure_pen" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/science/cytology) +"taJ" = ( +/obj/structure/broken_flooring/singular/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"taK" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/light/small/directional/south, +/turf/open/floor/glass, +/area/station/hallway/secondary/service) +"taM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"taO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/commons/dorms) +"taT" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/scientist, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"taZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tbc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tbh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Mini-Bar Shutters"; + id = "arrivalbar" + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"tbk" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"tbl" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tbm" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"tbp" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"tbq" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"tbw" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tbG" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"tbI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/lockers) +"tbO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/cargo/warehouse) +"tbP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tbR" = ( +/turf/open/openspace, +/area/station/hallway/primary/port) +"tbY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"tca" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"tce" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "circuitprivacy"; + name = "Circuit Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/circuits) +"tch" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/disposal/incinerator) +"tco" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"tcy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"tcF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"tcI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"tcL" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"tcM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"tcU" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/medical/pharmacy) +"tcW" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"tcY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"tda" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"tdc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/power/smes/super/full, +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"tdd" = ( +/obj/machinery/holopad, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"tde" = ( +/obj/structure/flora/grass/green/style_2, +/obj/structure/flora/bush/lavendergrass/style_4, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lower) +"tdk" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"tdl" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tdr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"tdw" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"tdQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/hedge, +/obj/machinery/digital_clock/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tdT" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"tec" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ted" = ( +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/item/food/grown/poppy/lily, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid2" + }, +/area/space/nearstation) +"tep" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tes" = ( +/obj/item/clothing/head/cone{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tet" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tez" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"teD" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/south, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"teG" = ( +/turf/closed/wall/rust, +/area/station/maintenance/port/aft) +"teH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"teN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"teP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos/pumproom) +"teS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/item/stack/arcadeticket, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"teV" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/range) +"teW" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"teY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"tfb" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"tfh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters Access" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"tfl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"tfm" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tfn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/port) +"tfy" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/computer/security/telescreen/engine/directional/east, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/engineering) +"tfD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"tfH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/security/prison) +"tfP" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small/dim/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/station/security/prison/safe) +"tfR" = ( +/obj/machinery/light/floor, +/obj/effect/landmark/transport/transport_id{ + specific_transport_id = "Bridge2Elevator" + }, +/obj/effect/abstract/elevator_music_zone{ + linked_elevator_id = "Bridge2Elevator" + }, +/obj/structure/transport/linear/public, +/turf/open/floor/plating/elevatorshaft, +/area/station/command) +"tfS" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/turf/open/floor/grass, +/area/station/service/janitor) +"tfT" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/station/command/meeting_room) +"tfU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -48; + pixel_y = 7 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"tga" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"tgc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "queue_hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/gateway) +"tgh" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/machinery/light_switch/directional/east{ + pixel_y = -6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"tgm" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/storage) +"tgu" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 14; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_x = 15; + pixel_y = 3 + }, +/obj/machinery/computer/security/telescreen/vault/directional/west, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tgA" = ( +/turf/open/openspace, +/area/station/maintenance/port/aft) +"tgE" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"tgF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/gravity_generator) +"tgM" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"tgN" = ( +/obj/structure/chair/stool/directional/east{ + pixel_x = -7 + }, +/obj/structure/sign/poster/contraband/blood_geometer/directional/west, +/obj/item/cigbutt{ + pixel_y = -2; + pixel_x = 2 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"tgO" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/cargo/lower) +"tgR" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"tgW" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/chapel/funeral) +"tgX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"thf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"thj" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"thE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/lesser) +"thG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"thH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"thJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"thK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/light_construct/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"thM" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"thO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"thP" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"thS" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/stairs/west{ + color = "#3d3e42" + }, +/obj/structure/sign/departments/holy/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"thT" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/service/hydroponics/garden) +"thZ" = ( +/obj/item/reagent_containers/cup/glass/bottle/hcider{ + pixel_y = 17; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/glass/bottle/grappa{ + pixel_y = 20 + }, +/obj/item/reagent_containers/cup/glass/bottle/grenadine{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_containers/cup/glass/bottle/rum{ + pixel_y = 13; + pixel_x = 1 + }, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/tequila{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/table/reinforced/plasmarglass, +/obj/structure/marker_beacon/fuchsia, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"tib" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid10" + }, +/area/space/nearstation) +"tic" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Brig Infirmary Maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"tij" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tin" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"tio" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"tip" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/maint) +"tiq" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/siding/blue, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"tis" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"tiv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/corporate_suite) +"tiz" = ( +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/hallway/secondary/command) +"tiI" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/breakroom) +"tiM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"tiN" = ( +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/science/ordnance) +"tiO" = ( +/turf/closed/wall/r_wall, +/area/station/science/ordnance/storage) +"tiP" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/garbage{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"tiT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tiV" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/central) +"tiZ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"tjs" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tjx" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"tjC" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"tjD" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"tjE" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"tjG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"tjV" = ( +/obj/item/dog_bone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tjX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"tkm" = ( +/obj/item/chair/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tko" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/engineering/atmos) +"tkr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"tkw" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tkC" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"tkL" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"tkO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/structure/table, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"tkP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/station/science/genetics) +"tkQ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"tlb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"tlg" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) +"tlk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/bridge) +"tlp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/barsign/directional/north, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"tly" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/item/clothing/glasses/sunglasses/big, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"tlz" = ( +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"tlD" = ( +/obj/structure/hedge, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"tlV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"tlW" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"tlX" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/fitness) +"tma" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/donk, +/area/station/medical/pharmacy) +"tmb" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tmd" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/sign/picture_frame/showroom/two{ + pixel_x = -32 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"tmg" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tmh" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tmj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"tmk" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/side{ + dir = 10 + }, +/area/station/service/kitchen) +"tmn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 9 + }, +/obj/machinery/requests_console/directional/west{ + department = "Engineering"; + name = "Engineering Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"tms" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/rock/pile/jungle/style_5, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/station/medical/psychology) +"tmt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/arcadeticket{ + amount = 6 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"tmz" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"tmE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/science/breakroom) +"tmK" = ( +/turf/open/floor/carpet, +/area/station/service/cafeteria) +"tmT" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"tmU" = ( +/obj/item/reagent_containers/cup/glass/bottle/kahlua{ + pixel_y = 17; + pixel_x = -7 + }, +/obj/item/reagent_containers/cup/glass/bottle/wine{ + pixel_x = 7; + pixel_y = 18 + }, +/obj/item/reagent_containers/cup/glass/bottle/vermouth{ + pixel_y = 12 + }, +/obj/item/reagent_containers/cup/glass/bottle/sake{ + pixel_y = 5; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/shochu{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/structure/marker_beacon/teal, +/obj/structure/table/reinforced/rglass, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"tmY" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/medbay/lobby) +"tmZ" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/chapel/funeral) +"tna" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/comfy/beige, +/turf/open/floor/carpet/red, +/area/station/service/library) +"tnh" = ( +/obj/effect/turf_decal/trimline/dark_blue/warning, +/turf/closed/wall, +/area/station/science/genetics) +"tnj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"tnz" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/box, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/machinery/requests_console/auto_name/directional/north{ + name = "Medbay Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"tnJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"tnR" = ( +/obj/machinery/holopad, +/obj/machinery/duct, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/aft) +"tod" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tof" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/science/genetics) +"toh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"tok" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"toq" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/iron{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/lithium{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow/end, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"tos" = ( +/obj/effect/turf_decal/trimline/white/arrow_cw{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"tow" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"toF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"toJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/corner, +/area/station/commons/dorms) +"toO" = ( +/obj/machinery/shower/directional/west, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/structure/fluff/shower_drain, +/turf/open/floor/iron/white/textured, +/area/station/medical/treatment_center) +"toQ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/research) +"toT" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"toX" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"toZ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F8-Fore-Hallway"; + codes_txt = "patrol;next_patrol=F9-Cargo" + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/hallway/primary/fore) +"tpb" = ( +/obj/structure/chair/sofa/bench/solo, +/obj/effect/landmark/start/hangover, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"tpf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tpk" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"tpn" = ( +/obj/machinery/roulette, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/fancy, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"tpq" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/station/science/research) +"tpv" = ( +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/science/circuits) +"tpy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/project) +"tpz" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tpQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tpS" = ( +/obj/structure/hedge, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"tpZ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"tqa" = ( +/obj/effect/turf_decal/trimline/green, +/obj/structure/chair/comfy, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"tqf" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/flashlight/lantern{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"tqm" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/corner, +/area/station/maintenance/starboard/fore) +"tqn" = ( +/obj/effect/turf_decal/siding/dark_green, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/ferny/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"tqo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/netpod, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"tqq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"tqs" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/miningoffice) +"tqy" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"tqE" = ( +/obj/structure/sign/clock/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"tqG" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tqL" = ( +/obj/structure/sign/departments/psychology/directional/east, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"tqT" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"tqW" = ( +/obj/machinery/power/port_gen/pacman/pre_loaded, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"tqY" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/hedge, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/trimline/brown/line, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/cargo/lower) +"trd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/central) +"trf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"trg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/office) +"trk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"trp" = ( +/obj/structure/fluff/paper/stack, +/obj/structure/chair/wood/wings, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"trq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"trx" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/visit) +"try" = ( +/obj/machinery/digital_clock/directional/south, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/bottle/gin{ + pixel_y = 18; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/curacao{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/cognac{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/bottle/coconut_rum{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/reagent_containers/cup/glass/bottle/amaretto{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/glass/bottle/absinthe{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/structure/railing, +/obj/structure/marker_beacon/indigo, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"trC" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"trE" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/edge{ + dir = 1 + }, +/area/station/security/prison) +"trM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"trN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/mob/living/basic/parrot/poly, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"trR" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"trS" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/digital_clock/directional/north, +/obj/item/cigbutt{ + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"tse" = ( +/obj/structure/flora/grass/both/style_2, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/statue/snow/snowman, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/light, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"tsf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"tsk" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tsp" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"tsz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"tsA" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"tsJ" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"tsN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"tsT" = ( +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"tte" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"ttf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"ttj" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/cargo/lower) +"ttk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"tto" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"ttq" = ( +/obj/structure/sign/warning/no_smoking/circle/directional/south, +/obj/machinery/plumbing/receiver, +/obj/effect/turf_decal/siding/yellow/end, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/medical/medbay/central) +"ttv" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/autodrobe, +/obj/item/toy/figure/mime{ + pixel_y = 16; + pixel_x = -6 + }, +/obj/item/toy/figure/clown{ + pixel_y = 16; + pixel_x = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"ttx" = ( +/obj/machinery/door/airlock/external{ + name = "EVA Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/eva, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/ai_monitored/command/storage/eva) +"ttF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lantern/on, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"ttH" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"ttI" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","bar") + }, +/turf/open/floor/carpet/neon/simple/blue/nodots, +/area/station/commons/fitness/recreation/lasertag) +"ttK" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"ttO" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"ttW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/no_smoking/circle/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"ttX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/rock/pile/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tua" = ( +/obj/machinery/netpod, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"tub" = ( +/obj/structure/broken_flooring/side/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tug" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"tus" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/always_floorplane/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tuw" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tuB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/poster/random_official, +/obj/item/poster/random_official{ + pixel_y = -5; + pixel_x = -6 + }, +/obj/item/poster/random_official{ + pixel_x = -4 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tuH" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/iron/chapel, +/area/station/service/chapel) +"tuK" = ( +/obj/machinery/door/airlock/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"tuM" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/diagonal_edge, +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/obj/structure/sign/clock/directional/south, +/obj/effect/turf_decal/siding/red, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/iron/dark/diagonal, +/area/station/security/breakroom) +"tuQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"tuR" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"tuZ" = ( +/obj/structure/barricade/sandbags{ + color = "#9d1a1a" + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"tvk" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/aft) +"tvl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"tvq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"tvt" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"tvw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"tvx" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"tvz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"tvB" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"tvF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/primary/port) +"tvH" = ( +/obj/structure/table/glass, +/obj/item/wheelchair{ + pixel_y = 4 + }, +/obj/item/wheelchair{ + pixel_y = 8 + }, +/obj/item/cane/white{ + pixel_y = -5; + pixel_x = -3 + }, +/obj/item/cane/white, +/obj/item/clothing/glasses/blindfold/white, +/obj/item/clothing/glasses/blindfold/white, +/turf/open/floor/iron/white/textured, +/area/station/medical/medbay/central) +"tvI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/processing) +"tvK" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/floor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel/funeral) +"tvL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"tvM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"tvT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tvU" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/boutique) +"tvV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bamboo{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/mid_joiner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood, +/area/station/commons/fitness/recreation/sauna) +"tvW" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"twj" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"twl" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/light/directional/north, +/obj/item/banner/cargo/mundane, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/cargo/miningoffice) +"twp" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tws" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"twz" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"twB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"twI" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/command) +"twL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"twQ" = ( +/turf/closed/wall, +/area/station/cargo/warehouse) +"twV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"twX" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/item/food/energybar, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 14 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"twY" = ( +/obj/item/storage/box/bodybags, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/pushbroom, +/obj/structure/closet{ + name = "janitorial supplies" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"twZ" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"txf" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"txl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/warden) +"txu" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_corner, +/area/station/commons/fitness) +"txv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"txw" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/large/style_2, +/turf/open/floor/grass, +/area/station/medical/virology) +"txH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/radshelter/civil) +"txO" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/decal/cleanable/dirt, +/obj/item/fish_analyzer, +/obj/structure/marker_beacon/indigo, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/port/aft) +"txW" = ( +/turf/open/space/openspace, +/area/space) +"txX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "fishstore"; + name = "Fish Store Shutters" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tye" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tyg" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tyk" = ( +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tym" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tyt" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/caution/white{ + dir = 4 + }, +/turf/open/floor/iron/white/textured_edge{ + dir = 8 + }, +/area/station/medical/surgery/theatre) +"tyE" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/jungle/b/style_random, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"tyF" = ( +/obj/machinery/sparker/directional/north{ + id = "Xenobio" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tyH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tyO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"tyQ" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"tyS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"tyW" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"tza" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"tzf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"tzp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"tzq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"tzx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"tzy" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tzB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tzD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"tzF" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/hallway/secondary/command) +"tzG" = ( +/obj/structure/sign/clock/directional/west, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/command/corporate_suite) +"tzP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"tzR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/reagent_dispensers/wall/peppertank/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"tzW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 10 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos/project) +"tzY" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"tzZ" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"tAb" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"tAe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tAf" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/tcommsat/server) +"tAi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"tAp" = ( +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/engineering/supermatter/room/upper) +"tAq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/office) +"tAr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/main) +"tAu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Engineering" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/engineering) +"tAv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/security/lockers) +"tAw" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"tAD" = ( +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"tAK" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"tAL" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/cargo/storage) +"tAO" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"tAS" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockescpod1, +/turf/open/floor/iron, +/area/station/commons/dorms) +"tAU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tAV" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/science/breakroom) +"tBk" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"tBl" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/construction/mining/aux_base) +"tBs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"tBt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"tBw" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"tBy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/camera/detective{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/taperecorder{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/flashlight/seclite{ + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"tBC" = ( +/obj/structure/hedge/opaque, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/turf/open/floor/grass, +/area/station/maintenance/department/security) +"tBI" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/commons/vacant_room/office) +"tBK" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/modular_computer/preset/civilian{ + dir = 8 + }, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/medical) +"tBL" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/bottle/toxin{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/ammo_casing{ + pixel_x = -19; + dir = 9 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff/paper/stack{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/station/maintenance/department/bridge) +"tBX" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 9 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"tBY" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/central) +"tCd" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/light/no_nightlight/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/research) +"tCe" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tCi" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"tCl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"tCw" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tCz" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/fore) +"tCA" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/button/door/directional/south{ + id = "Cell3"; + normaldoorcontrol = 1; + specialfunctions = 4; + name = "Cell 3 Doors Bolt Control"; + req_access = list("brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tCB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","rd","xeno") + }, +/turf/open/floor/iron/white/textured, +/area/station/science/xenobiology/hallway) +"tCC" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"tCN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/computer/security/telescreen/ordnance/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"tCP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/dorms) +"tCT" = ( +/obj/effect/turf_decal/trimline/tram/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/tram/mid_joiner, +/turf/open/floor/iron/dark/textured_half, +/area/station/security/detectives_office) +"tCV" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"tCW" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"tCY" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/airlock/command{ + name = "Captain's Reception"; + id_tag = "CapFoyer" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command) +"tDa" = ( +/obj/structure/hedge, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/sticker/googly{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/sticker/googly{ + pixel_x = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"tDc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tDe" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"tDh" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tDi" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tDq" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/iron/small, +/area/station/medical/patients_rooms) +"tDu" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"tDx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"tDE" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/item/storage/dice, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"tDJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/food/plant_smudge, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/port) +"tDK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/bed/double{ + dir = 1 + }, +/obj/item/bedsheet/hos/double{ + dir = 1 + }, +/obj/structure/sign/clock/directional/west, +/obj/item/toy/plush/shark{ + pixel_x = -4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"tDP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"tDQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"tDR" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/service/library/upper) +"tDS" = ( +/obj/structure/marker_beacon/yellow, +/turf/open/floor/catwalk_floor, +/area/station/engineering/supermatter/room/upper) +"tDT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/west{ + name = "Monkey Pen"; + req_access = list("genetics") + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/south{ + color = "#afc84b" + }, +/turf/open/floor/engine, +/area/station/science/genetics) +"tDW" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"tDX" = ( +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig/lower) +"tDY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"tEg" = ( +/obj/structure/railing, +/obj/item/kirbyplants/random, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"tEi" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/minibar) +"tEk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/morgue) +"tEn" = ( +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/circuit/red, +/area/station/ai_monitored/turret_protected/ai_upload) +"tEp" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"tEE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"tEF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"tEI" = ( +/obj/structure/flora/rock/pile/jungle/style_5, +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass{ + icon_state = "grass1" + }, +/area/station/security/prison/garden) +"tEL" = ( +/turf/closed/wall, +/area/station/service/library/lounge) +"tEO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"tEQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"tFb" = ( +/obj/effect/spawner/random/decoration/showcase, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"tFc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/effect/decal/cleanable/food/plant_smudge, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tFd" = ( +/obj/structure/sign/warning/cold_temp/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/machinery/vending/dinnerware, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"tFe" = ( +/obj/structure/table, +/obj/effect/spawner/random/clothing/costume, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tFh" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"tFk" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"tFo" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/station/engineering/atmos) +"tFp" = ( +/obj/structure/cable, +/obj/structure/sign/warning/no_smoking/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"tFz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"tFH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"tFI" = ( +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/commons/dorms) +"tFJ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"tFN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tFQ" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/flora/bush/flowers_br, +/obj/effect/spawner/xmastree, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/station/service/library/upper) +"tFY" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tFZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/storage/primary) +"tGe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"tGf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig) +"tGj" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tGn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/noticeboard/directional/south, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/neutral, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"tGr" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"tGx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"tGC" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tGE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tGI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid3" + }, +/area/space/nearstation) +"tGJ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tGP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/project) +"tGW" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"tGX" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/item/clothing/head/cone{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"tGZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command) +"tHb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/window{ + dir = 1; + name = "Teleporter Access Shutter"; + id = "teleportershutters" + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"tHc" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/prison) +"tHj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "innerbridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tHl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/musical_instrument, +/obj/item/bikehorn{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"tHn" = ( +/turf/closed/wall/r_wall, +/area/station/security/brig) +"tHq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/north{ + name = "Containment Pen #5"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"tHt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/deluxe_garbage, +/obj/structure/broken_flooring/singular/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"tHu" = ( +/obj/structure/railing/corner{ + dir = 4; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"tHv" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/caution/red, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"tHw" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/disposal) +"tHx" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"tHJ" = ( +/obj/machinery/light/floor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"tHK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tHQ" = ( +/obj/structure/sign/poster/official/cleanliness/directional/east, +/obj/structure/mop_bucket/janitorialcart{ + dir = 4 + }, +/obj/item/mop, +/obj/effect/turf_decal/bot/right, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"tHT" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"tHW" = ( +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"tHY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "sciprivacy"; + name = "Privacy Shutter" + }, +/turf/open/floor/plating, +/area/station/science/lab) +"tId" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/storage/box/prisoner, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"tIe" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/end{ + dir = 4 + }, +/obj/item/newspaper{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/newspaper, +/turf/open/floor/grass, +/area/station/hallway/primary/fore) +"tIq" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab" + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/iron/dark/airless, +/area/station/science/ordnance/freezerchamber) +"tIr" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"tIt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"tIu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"tIC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tIJ" = ( +/obj/structure/chair/sofa/bamboo/right{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"tIK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"tIL" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"tIQ" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/security/courtroom) +"tIR" = ( +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tJa" = ( +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/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, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"tJb" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/suit_storage_unit/medical, +/obj/effect/turf_decal/delivery, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"tJp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"tJq" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/teleporter, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/command/teleporter) +"tJr" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 3 + }, +/obj/item/pen/red{ + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -14; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 5; + pixel_x = -14 + }, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"tJt" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/augments) +"tJx" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tJW" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/commons/storage/primary) +"tKf" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/tree/jungle/small/style_3, +/obj/structure/marker_beacon/lime, +/obj/structure/disposalpipe/segment, +/turf/open/floor/grass, +/area/station/medical/lower) +"tKp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"tKv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/solars/port/fore) +"tKx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"tKy" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/cable_coil/cut{ + pixel_y = -12 + }, +/obj/item/food/deadmouse{ + pixel_y = 2 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tKF" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/duct, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"tKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"tKI" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"tKO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"tKX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library) +"tKZ" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater) +"tLb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/starboard/central) +"tLi" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"tLj" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tLm" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tLo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"tLq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"tLt" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tLu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/starboard) +"tLv" = ( +/obj/structure/chair/office/light{ + dir = 8; + name = "Defense" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"tLx" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/ai_monitored/turret_protected/aisat/service) +"tLz" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood/tile, +/area/station/maintenance/department/bridge) +"tLE" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tLF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/departments/medbay/alt/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"tLG" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/item/pushbroom, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/red/dim/directional/west, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"tLH" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"tLR" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/wideplating_new/light/corner, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/railing/corner, +/obj/structure/fluff/beach_umbrella/science{ + icon_state = "brella"; + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"tLT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"tLY" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tMc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/red, +/area/station/service/library) +"tMe" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"tMj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/library/lounge) +"tMl" = ( +/obj/machinery/air_sensor/ordnance_burn_chamber, +/turf/open/floor/engine/vacuum, +/area/station/science/ordnance/burnchamber) +"tMm" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"tMq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid10" + }, +/area/space/nearstation) +"tMz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/engineering/atmos/project) +"tMF" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"tMI" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tMN" = ( +/obj/structure/urinal/directional/west, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"tMP" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"tMT" = ( +/obj/structure/sign/departments/medbay/alt/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"tMW" = ( +/obj/effect/spawner/random/structure/closet_empty/crate/with_loot, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"tMY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"tNh" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass, +/area/station/service/kitchen/diner) +"tNi" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"tNj" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/door/window/right/directional/south{ + name = "Apiary"; + req_access = list("hydroponics") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"tNn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"tNu" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/misc/grass, +/area/station/engineering/main) +"tNv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"tNA" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"tNB" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/starboard) +"tNK" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"tNL" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/service/bar) +"tNN" = ( +/obj/structure/sink/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/prison/safe) +"tNP" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"tNQ" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/misc/grass, +/area/station/engineering/atmos) +"tNR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"tNT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/item/stack/arcadeticket, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"tNV" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/head/cone, +/turf/open/space/basic, +/area/space/nearstation) +"tOb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/science) +"tOn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tOp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tOs" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/central) +"tOw" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/turf/open/floor/plating, +/area/station/engineering/supermatter/room) +"tOx" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command) +"tOB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"tOI" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/storage) +"tOT" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison/visit) +"tOW" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"tOX" = ( +/obj/structure/flora/rock/style_4, +/obj/structure/spacevine{ + can_spread = 0; + pixel_x = 32 + }, +/obj/item/flashlight/lantern{ + pixel_x = 0; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/rubble, +/turf/open/floor/stone, +/area/station/ai_monitored/aisat/exterior) +"tPc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"tPe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/station/security/courtroom) +"tPh" = ( +/obj/item/trash/candy, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"tPk" = ( +/obj/machinery/button/door/directional/west{ + pixel_x = -32; + pixel_y = 2; + id = "briglockdown"; + name = "Brig Lockdown Control"; + req_access = list("security") + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/security/brig) +"tPp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"tPs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tPw" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"tPy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tPF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/starboard/central) +"tPK" = ( +/obj/item/reagent_containers/condiment/hotsauce{ + pixel_y = 16; + pixel_x = -8 + }, +/obj/item/reagent_containers/condiment/mayonnaise{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/reagent_containers/condiment/ketchup{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/item/reagent_containers/condiment/olive_oil{ + pixel_y = 16 + }, +/obj/item/reagent_containers/condiment/bbqsauce{ + pixel_y = 4; + pixel_x = -9 + }, +/obj/item/reagent_containers/condiment/soysauce{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white/side{ + dir = 5 + }, +/area/station/service/kitchen) +"tPN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"tPS" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"tPW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"tPX" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#36373a" + }, +/turf/open/openspace, +/area/station/service/chapel/funeral) +"tPZ" = ( +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"tQb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"tQd" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"tQe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tQo" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/breakroom) +"tQx" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"tQB" = ( +/obj/structure/barricade/sandbags{ + color = "#0095ff" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "laserblue"; + name = "Blue Team" + }, +/turf/open/floor/carpet/neon/simple/blue, +/area/station/commons/fitness/recreation/lasertag) +"tQL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tQM" = ( +/obj/structure/sign/warning/vacuum/external/directional/south, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"tQR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"tQW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"tQX" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + listening = 0; + name = "Interrogation Intercom"; + frequency = 1423 + }, +/obj/machinery/light/cold/dim/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"tRa" = ( +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/decal/cleanable/confetti, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"tRc" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_large, +/area/station/engineering/gravity_generator) +"tRi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tRp" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/marker_beacon/teal, +/turf/open/floor/grass, +/area/station/medical/medbay/lobby) +"tRB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"tRK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"tRL" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/maintenance/central) +"tRT" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"tRV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"tRY" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/warden) +"tSl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"tSr" = ( +/obj/item/folder/documents, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/filingcabinet, +/obj/machinery/camera/autoname/motion/directional/north{ + network = list("vault") + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"tSs" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"tSt" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"tSA" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"tSB" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/computer/operating, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/execution/education) +"tSF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/cargo/warehouse) +"tSJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/kirbyplants/fern{ + pixel_y = 6 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"tSM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"tSN" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"tSQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"tSS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"tSW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"tTa" = ( +/obj/structure/table/wood, +/obj/machinery/computer/records/medical/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = 15 + }, +/turf/open/floor/carpet, +/area/station/medical/psychology) +"tTb" = ( +/obj/structure/ladder, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light/directional/north{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"tTl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"tTs" = ( +/obj/machinery/rnd/experimentor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/science/explab) +"tTt" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"tTw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/structure/sign/poster/official/moth_meth/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"tTH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden/crude, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"tTM" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"tTN" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"tTQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/machinery/camera/autoname/directional/south{ + dir = 5; + network = list("ss13","engine") + }, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "engine" + }, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"tTR" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tTT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"tTV" = ( +/obj/structure/sign/warning/vacuum/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tUa" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tUc" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tUf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/central) +"tUk" = ( +/obj/structure/rack, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/under/misc/vice_officer, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/red/dim/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"tUm" = ( +/obj/structure/cable, +/obj/machinery/light/small/dim/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"tUn" = ( +/turf/closed/wall/r_wall, +/area/station/command/gateway) +"tUo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tUq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid4" + }, +/area/space/nearstation) +"tUv" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"tUH" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"tUK" = ( +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 4 + }, +/obj/structure/weightmachine/weightlifter, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/white/textured_corner{ + dir = 8 + }, +/area/station/commons/fitness) +"tUN" = ( +/obj/item/ammo_casing{ + pixel_y = -8; + dir = 10 + }, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = -3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "floor6-old" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"tUW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"tVd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"tVg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/project) +"tVl" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"tVp" = ( +/obj/structure/table/wood, +/obj/machinery/fax{ + fax_name = "Law Office"; + name = "Law Office Fax Machine" + }, +/obj/machinery/button/door/directional/west{ + id = "lawyer_shutters"; + name = "Privacy Shutters"; + req_access = list("lawyer") + }, +/obj/machinery/requests_console/directional/north{ + department = "Law Office"; + name = "Lawyer Requests Console" + }, +/turf/open/floor/carpet, +/area/station/service/lawoffice) +"tVs" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tVw" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"tVx" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"tVO" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/box, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/latex/nitrile, +/obj/item/clothing/gloves/latex/nitrile, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay"); + dir = 9 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"tVT" = ( +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/mirror/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"tVY" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/item/kirbyplants/organic/plant4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"tWa" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"tWk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/landmark/atmospheric_sanity/ignore_area, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"tWm" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/small, +/area/station/commons/storage/primary) +"tWn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/service) +"tWG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"tWI" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 6 + }, +/obj/structure/sink/kitchen/directional/south, +/obj/structure/mirror/directional/north, +/obj/machinery/button/door/directional/east{ + id = "kitchen_counter"; + name = "Kitchen Counter Shutters Control"; + req_access = list("kitchen") + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/station/service/kitchen) +"tWL" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"tWQ" = ( +/obj/structure/flora/rock/pile/icy, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"tWS" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"tWW" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/toy/figure/borg{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"tXg" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Curtains"; + id = "radioroom" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"tXh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/warning, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"tXr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"tXw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"tXx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"tXz" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/fireaxecabinet/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"tXA" = ( +/obj/effect/turf_decal/trimline/dark_blue/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/bridge) +"tXG" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"tXH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/item/analyzer, +/obj/structure/closet/radiation, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/hfr_room) +"tXI" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"tXP" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"tYf" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/side/directional/north, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"tYi" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"tYl" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 1; + name = "O2 To Pure" + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"tYn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria, +/area/station/hallway/primary/fore) +"tYq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/service/library) +"tYt" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/hallway/secondary/service) +"tYx" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"tYy" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/morgue) +"tYA" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"tYB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/command) +"tYE" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/maintenance/solars/port/fore) +"tYH" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"tYI" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 8 + }, +/obj/item/wallframe/apc, +/obj/structure/window/reinforced/unanchored/spawner/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"tYN" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"tYT" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"tZa" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"tZi" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/table, +/obj/item/binoculars{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"tZj" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"tZk" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"tZm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"tZr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"tZu" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/sign/clock/directional/east, +/obj/effect/spawner/random/entertainment/toy_figure, +/obj/machinery/camera/autoname/directional/east{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/security/prison/safe) +"tZC" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"tZN" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/light/directional/north{ + color = "#ffcc99" + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"tZQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/wood/glass{ + name = "Theater Backstage" + }, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/turf/open/floor/wood/large, +/area/station/service/theater) +"tZY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uaa" = ( +/obj/structure/table/wood/fancy, +/obj/item/clothing/glasses/monocle{ + pixel_y = 3 + }, +/obj/item/clothing/mask/fakemoustache, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"uah" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"uaj" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Permabrig Garden" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/garden) +"uak" = ( +/turf/closed/wall/r_wall, +/area/station/command/bridge) +"uam" = ( +/obj/structure/sign/departments/security/directional/south, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"uao" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"uav" = ( +/obj/structure/reflector/single/anchored{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"uaw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"uaz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"uaD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"uaG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uaH" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"uaM" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uba" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 2; + amount = 3; + pixel_x = -2 + }, +/obj/item/book/manual/wiki/grenades{ + pixel_x = 4; + pixel_y = -14 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 4; + pixel_y = -11 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"ubb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"ubh" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/food_or_drink/booze{ + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"ubp" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/central) +"ubz" = ( +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"ubC" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"ubG" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ubM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","medbay") + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"ubQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/fitness/recreation) +"ubR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"ubV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/rnd/production/protolathe/department/science, +/turf/open/floor/iron/dark/small, +/area/station/science/lab) +"uca" = ( +/obj/effect/turf_decal/siding/dark, +/obj/machinery/newscaster/directional/north, +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/iron/dark, +/area/station/command) +"ucb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/machinery/microwave, +/obj/structure/sign/poster/official/bless_this_spess/directional/west, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"ucf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"uco" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/sign/poster/official/there_is_no_gas_giant/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"ucy" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large/style_2, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"ucB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"ucH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"ucL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"ucQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"ucU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"ucW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"udj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"udm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"udo" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"udz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/execution/education) +"udE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"udF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"udR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"ued" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/atmospherics_portable, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"ueg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half, +/area/station/cargo/warehouse) +"ueu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"uev" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/spawner/random/trash/graffiti, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uew" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/water, +/area/station/maintenance/port/central) +"uey" = ( +/obj/item/wrench, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"ueF" = ( +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/textured_corner, +/area/station/medical/surgery/theatre) +"ueP" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/holosign/barrier/engineering, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/maintenance/starboard/fore) +"ueT" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Dock" + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/supply/mining, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ueZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"ufi" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"ufn" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"ufv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/storage/gas) +"ufx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/structure/railing{ + dir = 9 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"ufz" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"ufI" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/break_room) +"ufN" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/storage) +"ufP" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/lily, +/obj/item/food/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"ufT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"ufU" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"ufX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/qm) +"ugc" = ( +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"ugd" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"ugr" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/holding_cell) +"ugt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"ugF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"ugO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"ugP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ugW" = ( +/obj/structure/table, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_y = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"uhd" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"uhl" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uhn" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"uhv" = ( +/obj/structure/fence, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uhx" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uhy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"uhI" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/aft/greater) +"uhK" = ( +/turf/closed/wall, +/area/station/medical/patients_rooms) +"uhM" = ( +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/ai) +"uhP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"uhR" = ( +/obj/structure/hedge, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"uhW" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"uia" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uik" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"uim" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"uiq" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/button/door/directional/west{ + id = "arrivalclothes"; + name = "Clothes Shop Shutters Control" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"uiw" = ( +/turf/closed/wall/r_wall, +/area/station/command/meeting_room) +"uiF" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/camera/autoname/directional/east{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"uiG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"uiH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/atmos) +"uiI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/interrogation) +"uiJ" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"uiL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"uiQ" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/glass, +/area/station/service/library/upper) +"uiU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"uiZ" = ( +/turf/open/floor/glass, +/area/station/commons/lounge) +"uja" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"ujc" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/lighter, +/obj/machinery/button/door/directional/west{ + id = "arrivalbar"; + name = "Mini-Bar Shutters Control" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"ujf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"ujg" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"ujo" = ( +/obj/structure/table/optable, +/obj/machinery/light/small/directional/north, +/obj/item/surgical_drapes, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/abandoned) +"ujr" = ( +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Service Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"ujv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics) +"ujw" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/maintenance/central) +"ujx" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"ujz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"ujD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"ujE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/storage) +"ujJ" = ( +/obj/structure/marker_beacon, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ujR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ukb" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uke" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"uki" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"ukm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/maintenance/disposal/incinerator) +"ukD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/cult_turf, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"ukF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ukO" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"ukS" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics) +"ukX" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"ukY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"ula" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/caution_sign, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/aft) +"ulv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"ulA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"ulD" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat_interior) +"ulJ" = ( +/obj/structure/cable, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"umb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"umd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/sofa/left, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/science) +"uml" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"umn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"ums" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos) +"umC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/plate/small{ + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"umI" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/stamp/granted{ + pixel_y = 8; + pixel_x = 9 + }, +/obj/item/stamp/denied{ + pixel_x = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"umJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"umN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"umS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/prison) +"unf" = ( +/obj/structure/bed/medical/emergency{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"unn" = ( +/obj/structure/musician/piano, +/obj/item/reagent_containers/cup/glass/dry_ramen{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/item/cigarette{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"uno" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"unq" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B" + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"unr" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/machinery/telecomms/message_server/preset, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"unz" = ( +/obj/structure/tank_holder/extinguisher, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","tcomms") + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"unA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"unD" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"unG" = ( +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/left{ + color = "#5d341f" + }, +/area/station/commons/lounge) +"unH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/dresser, +/obj/structure/sign/calendar/directional/south, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"unP" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"unS" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"uof" = ( +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/upper) +"uoq" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"uor" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/fore) +"uoA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"uoB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/airlock/mining{ + name = "Cargo Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"uoE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/department/science) +"uoF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"uoH" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"uoQ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"uoS" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"uoV" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"upa" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/right{ + dir = 1; + color = "#3d3e42" + }, +/area/station/maintenance/aft/lesser) +"upc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"upu" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"upv" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"upC" = ( +/obj/effect/turf_decal/tile/purple, +/obj/item/banner/science/mundane, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"upM" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"upO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"upQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"upS" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"uqa" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"uqc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"uqd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uqi" = ( +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/toy/seashell{ + icon_state = "shell3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"uqq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/storage/primary) +"uqz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Commissary Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"uqH" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig/lower) +"uqK" = ( +/turf/open/openspace, +/area/station/security/brig) +"uqM" = ( +/turf/open/floor/carpet/red, +/area/station/command/heads_quarters/hos) +"uqO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"uqU" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 8 + }, +/obj/item/lighter{ + pixel_y = -15; + pixel_x = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"urf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"uri" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/openspace, +/area/station/solars/port/aft) +"urq" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/item/banner/engineering/mundane, +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/engineering/break_room) +"urx" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/structure/hedge, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"urz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"urH" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"urK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"urL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"urR" = ( +/obj/structure/sign/poster/official/here_for_your_safety/directional/north, +/obj/machinery/computer/security, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"urZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"use" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port) +"usf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab" + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance/testlab) +"usi" = ( +/obj/structure/sign/poster/contraband/c20r/directional/west, +/obj/structure/hedge, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"usp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"usu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/engineering/main) +"usv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"usw" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/starboard/central) +"usz" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/sign/departments/aiupload/directional/east, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"usD" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/command/directional/south, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"usH" = ( +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"usJ" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/always_floorplane/directional/north, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"usK" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/port) +"usN" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"usO" = ( +/obj/machinery/light/small/red/dim/directional/west, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"usR" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"usT" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"utd" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"utg" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"utv" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/processing) +"uty" = ( +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"utz" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"utB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/dresser, +/obj/item/clothing/glasses/regular{ + pixel_y = 9 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"utF" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"utH" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 18; + pixel_x = 5 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"utK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"utQ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"utR" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"utS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/flora/bush/jungle, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/floor/grass, +/area/station/service/chapel/funeral) +"utV" = ( +/obj/structure/bed/medical/emergency{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"utW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"uua" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology/hallway) +"uuc" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uue" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"uui" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uuk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/east{ + req_access = list("science"); + name = "Research Lab Desk" + }, +/obj/structure/desk_bell{ + pixel_x = 6 + }, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"uun" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"uur" = ( +/obj/machinery/holopad, +/obj/effect/spawner/random/engineering/tracking_beacon, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"uus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uut" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"uux" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"uuA" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"uuC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uuD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"uuG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/aicard, +/obj/item/ai_module/reset, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"uuH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uuJ" = ( +/obj/effect/turf_decal/weather/snow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"uuK" = ( +/obj/item/cigarette/pipe, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"uuL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Fuel Pipe to Filter" + }, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uuP" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"uuR" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"uuS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/hedge, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uve" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/holosign_creator/atmos{ + pixel_y = 6 + }, +/obj/item/holosign_creator/atmos{ + pixel_y = -2 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"uvg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"uvE" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uvH" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant1, +/turf/open/floor/iron/white/diagonal, +/area/station/cargo/breakroom) +"uvO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/iron, +/area/station/commons/dorms) +"uvR" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/closet{ + anchored = 1; + can_be_unanchored = 1; + name = "Cold protection gear" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/storage/bag/xeno, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"uvU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"uvW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Elevator"; + elevator_mode = 1; + transport_linked_id = "SecElevator" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/security/brig/lower) +"uwg" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"uwq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) +"uwy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"uwC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutters" + }, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Primary AI Core Access"; + req_access = list("ai_upload") + }, +/obj/machinery/flasher/directional/north{ + pixel_x = 26; + id = "AI" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/mapping_helpers/apc/cell_5k, +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"uwF" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"uwJ" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/reagent_containers/cup/soda_cans/pwr_game{ + pixel_y = 15; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/soda_cans/sol_dry{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/soda_cans/starkist{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/closet/mini_fridge{ + pixel_y = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"uwK" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"uwN" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uwS" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/cafeteria{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"uwV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/starboard) +"uxe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"uxm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uxn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uxE" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/security/prison/workout) +"uxF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage) +"uxI" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"uxK" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"uxN" = ( +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/processing) +"uxU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uyc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"uye" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uyn" = ( +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"uyp" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"uyr" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/structure/sign/calendar/directional/west, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"uys" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"uyx" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/floor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"uyy" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/processing) +"uyB" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/security/courtroom) +"uyR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"uyY" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/railing/corner{ + color = "#4874A2" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uyZ" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"uzb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/aft/lesser) +"uzq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"uzt" = ( +/obj/machinery/door/airlock/glass{ + name = "Escape Pods" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"uzy" = ( +/turf/closed/wall, +/area/station/science/robotics/storage) +"uzC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"uzD" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"uzE" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"uzJ" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/flora/bush/jungle/c/style_2, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"uzQ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"uzU" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uzV" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uzX" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"uzZ" = ( +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/north, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"uAb" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Containment Pen #4"; + req_access = list("xenobiology") + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"uAd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Cell 4"; + id_tag = "Cell4" + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"uAg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"uAh" = ( +/obj/item/chair/plastic, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uAt" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"uAu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"uAA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/plating, +/area/station/science/lab) +"uAF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"uAI" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uAJ" = ( +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"uAK" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/book/manual/wiki/engineering_construction, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"uAP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_research, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"uAY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/department/science) +"uBa" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"uBc" = ( +/turf/closed/wall, +/area/station/service/boutique) +"uBd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"uBi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"uBm" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/construction/mining/aux_base) +"uBn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/hos, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hos) +"uBq" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"uBs" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"uBw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"uBH" = ( +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"uBJ" = ( +/obj/docking_port/stationary/escape_pod{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"uBK" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"uBO" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 4"; + id_tag = "Cell4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison/safe) +"uBQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uCc" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"uCd" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"uCk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"uCl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"uCs" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uCt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"uCx" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/grass, +/area/station/commons/lounge) +"uCC" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_2, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"uCR" = ( +/turf/open/floor/engine/air, +/area/station/engineering/atmos) +"uCS" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"uCV" = ( +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai) +"uCW" = ( +/obj/structure/hedge, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"uDc" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"uDk" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"uDp" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"uDx" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uDB" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uDG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uDQ" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/storage/gas) +"uEb" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"uEd" = ( +/obj/effect/spawner/random/entertainment/money_small, +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uEm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Ports" + }, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uEv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"uED" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"uEE" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured_edge{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"uEJ" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/execution/education) +"uEK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uEL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/station/security/courtroom) +"uEM" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/structure/closet/crate/bin, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"uEU" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/genetics) +"uEW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"uEY" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/structure/sign/clock/directional/west, +/obj/item/toy/cards/deck, +/obj/machinery/camera/autoname/directional/west{ + network = list("prison") + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/security/prison/safe) +"uFj" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin, +/obj/item/knife/kitchen, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"uFk" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"uFv" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"uFD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/iron/smooth, +/area/station/cargo/drone_bay) +"uFJ" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/soap/nanotrasen, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_x = -24 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/education) +"uFK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/station/security/courtroom) +"uFM" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/central) +"uFU" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"uGc" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Holodeck - Fore 2"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/station/holodeck/rec_center) +"uGd" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/mail_sorting/science/robotics, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Robotics Junction" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uGe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22{ + pixel_y = -6; + pixel_x = 16 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/secondary/service) +"uGf" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"uGm" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"uGn" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "N2 to Airmix" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uGr" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"uGy" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"uGA" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/yellow/end, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"uGM" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/moisture_trap, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uGT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/machinery/autolathe, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/storage) +"uHm" = ( +/obj/structure/flora/grass/brown/style_random, +/obj/structure/flora/bush/snow/style_2, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/rock/pile/icy, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"uHp" = ( +/obj/structure/table, +/obj/item/toy/ammo/gun, +/obj/item/toy/gun, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"uHq" = ( +/obj/structure/lattice, +/obj/structure/chair/stool/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"uHu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/no_nightlight/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"uHw" = ( +/obj/structure/closet, +/obj/effect/landmark/start/hangover/closet, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"uHC" = ( +/obj/machinery/sparker/directional/north{ + id = "executionburn" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"uHD" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/decal/cleanable/glass, +/obj/item/rack_parts, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"uHF" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"uHI" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/sign/warning/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/science) +"uHV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/aquarium/prefilled, +/turf/open/floor/wood/large, +/area/station/service/lawoffice) +"uIg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"uIh" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/security/medical) +"uIt" = ( +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/end{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b/style_4, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation/pool) +"uIA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"uID" = ( +/turf/open/floor/iron/stairs/left{ + dir = 4; + color = "#3d3e42" + }, +/area/station/service/theater) +"uIH" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/dark_red/corner, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/light/floor/broken, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"uIJ" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"uIM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"uIQ" = ( +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/multitool, +/obj/structure/rack, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"uIS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"uIV" = ( +/turf/closed/wall, +/area/station/commons/storage/primary) +"uJb" = ( +/obj/effect/decal/cleanable/ash{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"uJc" = ( +/obj/structure/fluff/iced_abductor, +/turf/open/misc/asteroid/snow/airless, +/area/space/nearstation) +"uJf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"uJk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uJt" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/destructible/cult/item_dispenser/archives/library, +/obj/item/book/codex_gigas, +/obj/structure/sign/painting/large/library_private{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"uJA" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"uJD" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/engineering/break_room) +"uJN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"uJS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"uJU" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/fore) +"uKb" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/brig) +"uKc" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"uKq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uKx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"uKy" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"uKz" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"uKA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"uKG" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"uKI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/hedge/opaque, +/turf/open/floor/grass, +/area/station/maintenance/starboard/fore) +"uKJ" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/turret_protected/ai_upload) +"uKL" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/minisat/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"uKT" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"uKZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"uLf" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/commons/dorms) +"uLg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"uLs" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/command/teleporter) +"uLz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uLA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/security/checkpoint/supply) +"uLF" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/south, +/obj/machinery/firealarm/directional/west, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance, +/obj/item/paperwork/cargo, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"uLH" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/cmo) +"uLI" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"uLK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"uLL" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/port/central) +"uLN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"uLP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"uLW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"uLX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/ordnance) +"uLZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/requests_console/directional/north{ + department = "Chapel"; + name = "Chapel Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/carpet, +/area/station/service/chapel/office) +"uMa" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"uMb" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Boutique" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/boutique) +"uMd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/lower) +"uMe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/greater) +"uMn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"uMD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/station/solars/starboard/fore) +"uMK" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/security/prison) +"uMN" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/west{ + network = list("ss13","rd") + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/science/research) +"uMP" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/structure/toilet{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/item/plunger{ + pixel_y = 16; + pixel_x = -9 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"uMX" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"uNa" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"uNd" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"uNi" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/item/cigbutt{ + pixel_y = -2; + pixel_x = 2 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/port/central) +"uNr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/service/library) +"uNz" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/bookcase/random, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"uNC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"uNI" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"uNP" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"uNU" = ( +/obj/structure/sign/departments/lawyer/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/starboard) +"uNV" = ( +/turf/closed/wall, +/area/station/security/checkpoint/medical) +"uNY" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"uOl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"uOy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"uOD" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/structure/filingcabinet, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"uOF" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"uOM" = ( +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"uOP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uOX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/office) +"uOZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"uPd" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads to the morgue."; + name = "corpse disposal" + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/medical/surgery/theatre) +"uPe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"uPf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"uPi" = ( +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/departments/telecomms/directional/north, +/obj/structure/cable, +/obj/machinery/light/small/dim/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"uPl" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"uPn" = ( +/turf/open/floor/glass/reinforced, +/area/station/medical/medbay/central) +"uPo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"uPq" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uPw" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"uPC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"uPF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark_blue/warning, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"uPG" = ( +/obj/machinery/netpod, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"uPH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"uPK" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"uPL" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/lavendergrass, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"uPS" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/station/security/checkpoint/escape) +"uPX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/bridge) +"uQa" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"uQi" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/barber) +"uQk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"uQl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/blood_geometer/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"uQm" = ( +/obj/structure/mop_bucket, +/obj/item/mop/cyborg, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"uQr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uQw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"uQG" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/sign/clock/directional/west, +/obj/machinery/microwave, +/obj/item/storage/box/coffeepack{ + pixel_x = -6; + pixel_y = -12 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"uQI" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/random/directional/north, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/fore) +"uQP" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port) +"uQR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"uQV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"uRb" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerUp"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay"; + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"uRf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"uRq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos) +"uRu" = ( +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"uRy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"uRN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/library) +"uRO" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"uRT" = ( +/obj/structure/sign/poster/random/directional/east, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"uRZ" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"uSc" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/sign/warning/yes_smoking/circle/directional/south, +/turf/open/floor/grass, +/area/station/service/bar) +"uSf" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage) +"uSg" = ( +/obj/structure/railing/corner, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"uSh" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"uSl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/camera/autoname/motion/directional/south{ + network = list("minisat") + }, +/turf/open/misc/asteroid/airless, +/area/station/ai_monitored/aisat/exterior) +"uSn" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/primary/starboard) +"uSp" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"uSv" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"uSy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"uSF" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"uSG" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"uTb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"uTf" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"uTm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"uTo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"uTp" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"uTq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"uTt" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/security/prison) +"uTx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"uTF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"uTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uTM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"uTP" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/warden) +"uTQ" = ( +/obj/effect/turf_decal/siding/dark_green, +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/rubble, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/stone, +/area/station/ai_monitored/aisat/exterior) +"uTS" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"uTX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"uTZ" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel" + }, +/obj/machinery/camera/autoname/motion/directional/west{ + network = list("aiupload") + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"uUa" = ( +/obj/structure/holosign/barrier/engineering, +/obj/effect/decal/cleanable/fuel_pool, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"uUc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/sign/poster/official/jim_nortons/directional/east, +/obj/item/toy/figure/cmo{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"uUg" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/box/red/corners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"uUi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/chair/stool/bar/directional/west, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/commons/fitness/recreation) +"uUl" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uUo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/command) +"uUr" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/official/nanotrasen_logo/directional/east, +/obj/structure/closet/crate/trashcart/laundry, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 8 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/knife/shiv, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"uUt" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/structure/sign/poster/official/no_erp/directional/west, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plastic, +/area/station/commons/dorms/laundry) +"uUF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"uUI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/office) +"uUO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table/glass, +/obj/item/newspaper, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"uUP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/secondary/service) +"uUS" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"uUT" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/miningoffice) +"uUV" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd","xeno") + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"uUX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"uVa" = ( +/turf/closed/wall, +/area/station/medical/medbay/central) +"uVb" = ( +/obj/structure/railing/corner/end/flip, +/obj/structure/railing/corner/end, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"uVd" = ( +/turf/closed/wall, +/area/station/medical/medbay/lobby) +"uVi" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"uVp" = ( +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/corner, +/turf/open/floor/iron/white/diagonal, +/area/station/engineering/break_room) +"uVr" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/commons/fitness) +"uVs" = ( +/obj/structure/stairs/west{ + color = "#3d3e42" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"uVu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"uVy" = ( +/obj/machinery/photocopier{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/secure_safe/directional/north, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"uVB" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"uVC" = ( +/obj/structure/railing, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"uVF" = ( +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/item/radio/intercom/directional/south{ + pixel_y = -28 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"uVH" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uVN" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/tile/purple/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/breakroom) +"uVW" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"uVY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/cup/watering_can, +/obj/item/radio/intercom/prison/directional/north, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"uWg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"uWh" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uWi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"uWn" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/purple/end{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"uWo" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"uWt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"uWy" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/detectives_office) +"uWz" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uWE" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/sorting) +"uWI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uWQ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"uWR" = ( +/obj/item/banner/command/mundane, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"uWV" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"uWW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"uWZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/aft/lesser) +"uXd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/storage/tech) +"uXh" = ( +/obj/item/stack/cable_coil/cut, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uXl" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/ai_monitored/turret_protected/aisat/service) +"uXm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"uXn" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"uXp" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/break_room) +"uXE" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"uXK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"uXL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"uXN" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/box/monkeycubes{ + pixel_y = 0; + pixel_x = 0 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"uXR" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"uXT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"uXY" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet, +/area/station/service/cafeteria) +"uYf" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/sorting) +"uYh" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/structure/table/glass, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_y = 3; + pixel_x = -8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"uYj" = ( +/obj/structure/cable, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f" + }, +/area/station/cargo/mining_breakroom) +"uYm" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"uYr" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"uYw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"uYI" = ( +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 9 + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"uYL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"uYT" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"uYZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"uZi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"uZk" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"uZl" = ( +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/structure/closet/athletic_mixed, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_large, +/area/station/security/prison/workout) +"uZo" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/sunny/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"uZr" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/iron/dark, +/area/station/security/warden) +"uZv" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"uZE" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/marker_beacon/lime, +/obj/structure/cable, +/turf/open/floor/grass, +/area/station/ai_monitored/turret_protected/aisat/service) +"uZJ" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/janitor) +"uZL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"uZQ" = ( +/obj/structure/curtain/cloth/fancy/mechanical{ + name = "Psychologist's Office Curtains"; + id = "psychpriv" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/medical/psychology) +"uZT" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"uZV" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"vaa" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/structure/table/glass, +/obj/item/storage/medkit/regular{ + pixel_y = 4 + }, +/obj/item/paper/pamphlet/gateway{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"vab" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"vae" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"vaj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vaq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"vat" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/locker) +"vaw" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/neon/simple/lime, +/area/station/ai_monitored/turret_protected/ai) +"vaz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"vaE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/medical/patients_rooms) +"vaG" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"vaK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/hallway/secondary/service) +"vaL" = ( +/obj/effect/turf_decal/arrows/white{ + color = "#5971a6"; + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"vaU" = ( +/obj/structure/window/reinforced/plasma/spawner/directional/west, +/obj/structure/cable, +/obj/machinery/power/energy_accumulator/tesla_coil/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"vaX" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/item/clothing/head/cone{ + pixel_x = -6 + }, +/turf/open/floor/grass, +/area/station/maintenance/department/bridge) +"vba" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"vbb" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/bridge) +"vbc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"vbe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/sign/warning/doors/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"vbf" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"vbh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"vbi" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/confetti, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"vbj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood/tile, +/area/station/service/library/upper) +"vbl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/department/bridge) +"vbm" = ( +/obj/effect/turf_decal/siding/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + name = "Medbay Lower Doors Control"; + id = "MedbayFoyerDown"; + normaldoorcontrol = 1; + pixel_y = -6; + req_access = list("medical") + }, +/obj/machinery/button/door/directional/east{ + name = "Medbay Upper Doors Control"; + id = "MedbayFoyerUp"; + normaldoorcontrol = 1; + pixel_y = 6; + req_access = list("medical") + }, +/obj/structure/rack, +/obj/item/storage/medkit{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/emergency_bed{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/bottle/diethylamine{ + pixel_x = 3 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 9 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/office) +"vbp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/south, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"vbA" = ( +/obj/structure/sign/departments/court/directional/north, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"vbB" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/bush/reed/style_3{ + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/misc/dirt/dark/station, +/area/station/ai_monitored/aisat/exterior) +"vbG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/library) +"vbK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/engineering/atmos) +"vbL" = ( +/obj/structure/flora/rock/pile/jungle/large/style_3, +/obj/structure/flora/tree/jungle/small/style_6{ + pixel_y = -16 + }, +/obj/structure/marker_beacon/lime, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"vbM" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"vbO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/solars/starboard/fore) +"vbT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"vbW" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"vcd" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"vcg" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/any/command/captain, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain) +"vcl" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/end{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"vcv" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/primary/port) +"vcy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/hedge, +/obj/structure/sign/directions/security/directional/south{ + pixel_y = -24; + dir = 4 + }, +/obj/structure/sign/directions/command/directional/south{ + dir = 4 + }, +/obj/structure/sign/directions/upload/directional/south{ + pixel_y = -40; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vcF" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vcG" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"vcJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"vcL" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/structure/kitchenspike, +/obj/effect/turf_decal/weather/snow, +/obj/structure/sign/poster/contraband/rip_badger/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"vcM" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"vcN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/red, +/area/station/security/brig) +"vcR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"vcY" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vdb" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/sign/poster/official/periodic_table/directional/east, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/medical/pharmacy) +"vdf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/flag/nanotrasen/directional/south, +/obj/item/assembly/mousetrap/armed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vdg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"vdi" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood/end, +/obj/machinery/newscaster/directional/west, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"vdk" = ( +/obj/machinery/status_display/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"vdm" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vdw" = ( +/obj/item/radio/intercom/directional/east{ + name = "Private Channel"; + frequency = 1447; + broadcasting = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/computer/security/telescreen/aiupload/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload_foyer) +"vdA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/solars/starboard/fore) +"vdF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos/pumproom) +"vdJ" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"vdN" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"vdS" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"vdT" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"veh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/left/directional/north, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/security/prison/visit) +"vej" = ( +/obj/structure/closet/crate/grave, +/obj/structure/flora/bush/flowers_yw/style_2, +/obj/item/dog_bone, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vel" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/security) +"veq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/atmos/storage) +"vex" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "outerbridge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vey" = ( +/obj/machinery/recharge_station, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"vez" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"veC" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/pipe_dispenser, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"veF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/atmos/storage) +"veG" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"veI" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"veJ" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid8" + }, +/area/space/nearstation) +"veP" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"veR" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/water, +/area/station/maintenance/port/central) +"veS" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/bulletproof_armor, +/obj/effect/spawner/random/armory/bulletproof_helmet, +/obj/effect/turf_decal/bot/left, +/obj/machinery/button/door/directional/south{ + id = "armouryaccess"; + name = "Armoury Access"; + req_access = list("armory") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"veT" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"veU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"veW" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"veX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"vfd" = ( +/obj/structure/railing, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vfh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/smooth_half{ + dir = 1 + }, +/area/station/security/execution/education) +"vfi" = ( +/mob/living/basic/pet/dog/corgi/puppy/void{ + dir = 4 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"vfl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"vfp" = ( +/obj/item/kirbyplants/random, +/obj/machinery/digital_clock/directional/east, +/obj/machinery/camera/autoname/directional/north{ + network = list("prison") + }, +/turf/open/floor/iron/white/textured_large, +/area/station/security/prison/workout) +"vfr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/effect/landmark/navigate_destination{ + location = "Escape" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"vfF" = ( +/obj/effect/turf_decal/arrows/red, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/smooth_edge, +/area/station/commons/fitness) +"vfV" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vfZ" = ( +/obj/effect/decal/cleanable/wrapping, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"vgh" = ( +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 4 + }, +/area/station/security/prison) +"vgm" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"vgr" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"vgv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/science/genetics) +"vgC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"vgD" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/breakroom) +"vgE" = ( +/obj/effect/turf_decal/bot_red, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/ordnance/storage) +"vgI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"vgL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/central) +"vgM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/bamboo/tatami/black, +/area/station/maintenance/starboard/central) +"vgN" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/station/medical/virology) +"vgU" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"vgV" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/green{ + dir = 10 + }, +/obj/item/plant_analyzer, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/item/reagent_containers/cup/watering_can, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"vgW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"vgX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vgY" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vha" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/janitor) +"vhd" = ( +/obj/structure/flora/rock/pile/jungle, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/style_2, +/turf/open/misc/sandy_dirt, +/area/station/security/brig) +"vhe" = ( +/obj/structure/table/glass, +/obj/item/food/grown/poppy/geranium, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"vhm" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 6 + }, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/east{ + name = "Research Lab Desk"; + req_access = list("science") + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"vho" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"vhB" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vhG" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vhO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"vhP" = ( +/obj/structure/hedge/opaque, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"vhR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/central) +"vhT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"vib" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"vig" = ( +/obj/effect/turf_decal/siding/brown, +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"vii" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vil" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/west{ + name = "Security Requests Console"; + department = "Security" + }, +/obj/effect/mapping_helpers/requests_console/assistance, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/machinery/computer/records/security/laptop{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"vip" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock"; + space_dir = 4 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"vir" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/grass, +/area/station/medical/virology) +"viu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"viw" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"viA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"viD" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"viF" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"viG" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/plate/small{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"viI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Research Division Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured, +/area/station/science/lobby) +"viL" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Closet" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/project) +"viM" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/structure/table/reinforced/rglass, +/obj/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/service) +"viP" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/security/brig) +"viQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"viX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/cleanliness/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"vjc" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"vjj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"vjk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"vjn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"vjr" = ( +/obj/machinery/digital_clock/directional/north, +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","medbay") + }, +/turf/open/floor/iron/white, +/area/station/medical/patients_rooms) +"vjs" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"vjD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff/broken_canister_frame, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"vjF" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"vjG" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/hedge, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"vjH" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/sign/poster/official/moth_delam/directional/north, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vjI" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/closet/secure_closet/brig{ + id = "scicell"; + name = "Science Cell Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"vjJ" = ( +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/prison) +"vjK" = ( +/obj/effect/spawner/random/trash/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"vjM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"vjO" = ( +/turf/closed/wall, +/area/station/science/lower) +"vjR" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/white/smooth_edge{ + dir = 4 + }, +/area/station/commons/fitness) +"vjS" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/rec) +"vjW" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Research Director" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) +"vjX" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vjZ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"vka" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"vkh" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"vki" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vkq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vky" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) +"vkz" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser/carbine/practice{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/range) +"vkB" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vkH" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"vkK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"vkN" = ( +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vkP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vkR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"vkS" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vkW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/stone, +/area/station/command/meeting_room) +"vkX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/office) +"vlb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Outlet Pump" + }, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vll" = ( +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"vln" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/red, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/warning/no_smoking/circle/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/port/aft) +"vlo" = ( +/obj/structure/curtain/cloth/fancy, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"vlq" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"vlr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/food/melonfruitbowl{ + pixel_y = 9; + pixel_x = -1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"vlt" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/station/hallway/secondary/exit/departure_lounge) +"vlu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/engineering/atmos/pumproom) +"vlw" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/aft) +"vlE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"vlI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"vlM" = ( +/obj/machinery/ai_slipper{ + uses = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai_upload) +"vlP" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/port) +"vlQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_corner{ + dir = 4 + }, +/area/station/medical/surgery/theatre) +"vlY" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"vmc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"vme" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"vmi" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/cult_turf, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"vmp" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychology" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/psychology) +"vmt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/maintenance/central) +"vmv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/radshelter/civil) +"vmB" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/machinery/shower/directional/north, +/obj/item/bikehorn/rubberducky, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/left/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured_large, +/area/station/commons/toilet/restrooms) +"vmS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/steam_vent, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vmX" = ( +/obj/item/shovel, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"vnc" = ( +/obj/structure/marker_beacon/lime, +/obj/effect/landmark/event_spawn, +/obj/structure/flora/rock/pile/jungle/large/style_random, +/obj/structure/flora/rock/style_4, +/turf/open/floor/grass, +/area/station/medical/lower) +"vnj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/dorms) +"vnl" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/shaker{ + pixel_y = 27; + pixel_x = -8 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"vnq" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"vnt" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vnw" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"vnA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible/layer1{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"vnD" = ( +/obj/structure/sign/warning/vacuum/external/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"vnE" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"vnG" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/iron/white/textured_edge, +/area/station/maintenance/fore/lesser) +"vnJ" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"vnM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"vnP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner, +/area/station/commons/fitness/recreation) +"vnS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"vnU" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/white{ + pixel_y = 3; + pixel_x = -2 + }, +/obj/item/computer_disk/ordnance{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/item/stamp/head/rd, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"vnV" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/lockers) +"vnZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"vod" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"vot" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/pen/fountain{ + pixel_x = 6 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"vox" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/weather/snow, +/obj/structure/noticeboard/directional/north, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/station/service/kitchen/coldroom) +"voz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"voG" = ( +/obj/machinery/light/directional/north{ + color = "#ffcc99" + }, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/structure/window/spawner/directional/south, +/obj/item/paint_palette{ + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"voS" = ( +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction, +/turf/open/floor/iron/dark/diagonal, +/area/station/hallway/primary/port) +"voU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"voV" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/item/reagent_containers/dropper{ + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 3 + }, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -6 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/medical/pharmacy) +"voZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/turf/open/floor/catwalk_floor/iron_smooth, +/area/station/maintenance/port/central) +"vpc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"vph" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"vpi" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"vpp" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"vpu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"vpy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vpA" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vpB" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/station/medical/medbay/lobby) +"vpX" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"vqa" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/structure/flora/tree/jungle/small/style_5{ + pixel_y = -16 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/misc/grass, +/area/station/hallway/primary/port) +"vqc" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"vqf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"vqm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"vqu" = ( +/obj/structure/railing, +/obj/structure/marker_beacon, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"vqz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/chemistry) +"vqE" = ( +/obj/structure/holosign/barrier, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"vqI" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"vqJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/tcommsat/server) +"vqQ" = ( +/obj/structure/disposaloutlet{ + dir = 8; + name = "Cargo Deliveries" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/medbay/central) +"vqT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"vqW" = ( +/obj/item/robot_suit, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/science/robotics/lab) +"vqY" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"vqZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vre" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"vrl" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/white, +/area/station/science/robotics/mechbay) +"vrq" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vru" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"vrK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/spacevine{ + can_spread = 0; + pixel_x = -32 + }, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"vrO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"vrR" = ( +/obj/effect/turf_decal/siding/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"vrT" = ( +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/landmark/start/hangover, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"vrU" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"vrZ" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"vsa" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8; + name = "Medical Deliveries" + }, +/obj/structure/sign/departments/exam_room/directional/east{ + color = "#52B4E9" + }, +/obj/structure/plasticflaps{ + name = "Medical Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) +"vsh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/plating, +/area/station/engineering/atmos) +"vsi" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"vsj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/structure/sign/poster/random/directional/south, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"vsk" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"vso" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/port/aft) +"vsz" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/large/style_random{ + pixel_y = 0 + }, +/obj/structure/water_source/puddle, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/station/medical/virology) +"vsA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"vsB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/sofa/right, +/obj/item/newspaper, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/department/science) +"vsC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vsI" = ( +/obj/structure/cable, +/turf/open/floor/carpet/black, +/area/station/commons/vacant_room/office) +"vsK" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"vsO" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"vtc" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vtd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"vtk" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"vtm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"vtp" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"vtu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/station/cargo/office) +"vtD" = ( +/obj/structure/cable, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vtJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 5 + }, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"vtP" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"vtW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vtZ" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8; + pixel_x = -6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"vug" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/turf/open/floor/iron/white/textured, +/area/station/medical/chemistry) +"vui" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"vuk" = ( +/turf/open/floor/engine/plasma, +/area/station/engineering/atmos) +"vum" = ( +/obj/machinery/light/floor, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"vup" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"vuB" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vuE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/fitness/recreation) +"vuF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/trimline/dark_red/warning, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vuR" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vvi" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"vvj" = ( +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/medical/chemistry) +"vvn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vvp" = ( +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/bed/pod{ + desc = "An old medical bed, just waiting for replacement with something up to date."; + name = "medical bed" + }, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_a) +"vvu" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"vvv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_yw, +/turf/open/floor/grass, +/area/station/commons/locker) +"vvy" = ( +/obj/structure/weightmachine, +/obj/effect/turf_decal/tile/dark_red/anticorner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/white/textured_corner{ + dir = 4 + }, +/area/station/security/prison/workout) +"vvz" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/security/processing) +"vvD" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/bookcase/random/reference, +/obj/item/clothing/glasses/regular/hipster{ + name = "Hipster Glasses"; + pixel_y = 15 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"vvF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"vvH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"vvI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/station/science/research) +"vvK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/iron/freezer, +/area/station/science/xenobiology) +"vvL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vvM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"vvQ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"vvT" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"vvU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/command) +"vvX" = ( +/obj/machinery/fax{ + fax_name = "Research Division"; + name = "Research Division Fax Machine"; + pixel_x = 1 + }, +/obj/structure/table/glass, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera/autoname/directional/east{ + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"vvZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"vwb" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/textured_half, +/area/station/science/ordnance) +"vwd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vwi" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/fitness) +"vwm" = ( +/obj/structure/window/spawner/directional/south, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"vwn" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/glass/bottle/whiskey{ + pixel_y = 17; + pixel_x = -3 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"vwx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"vwB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/chemistry) +"vwE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album/library{ + pixel_y = 16 + }, +/obj/item/camera{ + pixel_x = 8 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/green, +/area/station/service/library/printer) +"vwF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/tile, +/area/station/maintenance/port) +"vwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vwR" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"vwX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/science) +"vxa" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"vxf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/sign/poster/official/work_for_a_future/directional/west, +/turf/open/floor/grass, +/area/station/command/heads_quarters/qm) +"vxl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"vxq" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/security/execution/transfer) +"vxr" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"vxt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vxx" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/server) +"vxF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vxL" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation) +"vxO" = ( +/obj/structure/table, +/obj/machinery/computer/records/medical/laptop{ + pixel_y = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"vxQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vxT" = ( +/obj/effect/spawner/random/structure/shipping_container, +/obj/structure/railing, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"vxZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"vyb" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"vyl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"vym" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"vyo" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"vyp" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_y = 7; + pixel_x = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"vyr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/storage) +"vyw" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"vyE" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"vyM" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"vyN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"vyX" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"vyZ" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/stone, +/area/station/commons/dorms) +"vzj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"vzo" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/iron/dark/textured, +/area/station/medical/cryo) +"vzp" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/hedge/opaque, +/turf/open/floor/iron/dark, +/area/station/security/prison/shower) +"vzq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vzv" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/structure/sign/poster/official/random/directional/north, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vzC" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"vzP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"vzQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"vzX" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"vzY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/lobby) +"vzZ" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"vAi" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vAj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "projectlock"; + name = "Atmospherics Project Room Lockdown Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos/project) +"vAk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/glass{ + name = "Smoking Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vAl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "queue_hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/hop) +"vAu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"vAz" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/medical/storage) +"vAE" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"vAG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"vAQ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vAT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"vAX" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + pixel_x = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"vBf" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"vBi" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/leavy/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"vBk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/central) +"vBu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vBz" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"vBA" = ( +/obj/machinery/button/door/directional/east{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + req_access = list("cargo"); + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) +"vBL" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"vBS" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/service/hydroponics) +"vBW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"vCa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vCd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"vCf" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/trimline/white, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/range) +"vCh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"vCm" = ( +/turf/open/floor/glass/reinforced, +/area/station/science/lower) +"vCn" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"vCv" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/filingcabinet, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"vCx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner, +/area/station/engineering/atmos) +"vCy" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vCA" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/clothing/gloves/latex{ + pixel_x = 1; + pixel_y = 16 + }, +/obj/item/storage/box/monkeycubes{ + pixel_y = 4; + pixel_x = 0 + }, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"vCC" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid5" + }, +/area/space/nearstation) +"vCE" = ( +/obj/structure/billboard/fortune_telling, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/rubble, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vCN" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"vCR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"vCS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vCV" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/prison) +"vCY" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/item/stack/sheet/mineral/sandstone, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vDd" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"vDf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) +"vDk" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"vDq" = ( +/obj/structure/cable, +/obj/structure/sign/poster/contraband/random/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"vDr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/ianbirthday, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"vDt" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/machinery/chem_heater/withbuffer, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"vDz" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"vDC" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_red/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8; + color = "#4874A2" + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"vDE" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/crate/bin, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vDF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"vDK" = ( +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"vDS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/port/aft) +"vDY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"vEg" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"vEh" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vEj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vEn" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"vEr" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/jungle/a/style_3, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/service/hydroponics) +"vEu" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/wood, +/obj/machinery/nuclearbomb/beer{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"vEv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/science/lobby) +"vEB" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/restrooms) +"vEG" = ( +/obj/machinery/door/airlock/wood/glass{ + name = "Small Garden Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"vEJ" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"vEK" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"vFa" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner/directional/east, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"vFf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"vFn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vFt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"vFA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"vFD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/filingcabinet/security, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"vFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/pile/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"vFN" = ( +/obj/structure/sink/directional/south, +/obj/structure/mirror/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/textured, +/area/station/security/prison/shower) +"vFQ" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/ash{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/cigbutt{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vFV" = ( +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_blue/corner, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/cafeteria, +/area/station/commons/dorms/laundry) +"vFX" = ( +/obj/structure/table/glass, +/obj/item/food/grown/rose{ + pixel_y = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"vGe" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/requests_console/directional/west{ + name = "Bar Requests Console"; + department = "Bar" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/structure/cable, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"vGi" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vGl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/medical/chem_storage) +"vGm" = ( +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"vGr" = ( +/obj/effect/decal/cleanable/plasma, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"vGu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"vGw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/trimline/brown/warning, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/service/library) +"vGF" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/cargo/sorting) +"vGH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vGO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vGR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/air_sensor/incinerator_tank, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) +"vGS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/cmo) +"vGT" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"vHm" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"vHs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"vHv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/engine_smes) +"vHx" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/maintenance/central) +"vHy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"vHB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"vHD" = ( +/obj/machinery/modular_computer/preset/cargochat/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"vHF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"vHR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vHX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"vIf" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/calendar/directional/south, +/obj/item/storage/photo_album, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"vIi" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"vIn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"vIr" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Sanitarium" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"vIt" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"vIv" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/turf/open/floor/iron/dark/smooth_corner, +/area/station/construction/mining/aux_base) +"vIx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vIE" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vIF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vIJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"vIM" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"vIS" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/flare/candle{ + pixel_y = 5; + pixel_x = 16 + }, +/obj/item/plate/small{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"vIU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/preopen, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"vIY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"vJd" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/table/wood/fancy/royalblack, +/obj/machinery/microwave, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"vJm" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/dorms) +"vJn" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/breakroom) +"vJr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart/filled, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"vJu" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/structure/sign/warning/deathsposal/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/effect/turf_decal/box/red/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/red/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"vJz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/flare/candle{ + pixel_y = 3 + }, +/obj/item/flashlight/flare/candle{ + pixel_x = -7 + }, +/obj/item/sticker/heart{ + pixel_y = -4; + pixel_x = 8 + }, +/turf/open/floor/iron/grimy, +/area/station/maintenance/port/central) +"vJF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vJG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/commons/fitness/recreation) +"vJL" = ( +/obj/effect/decal/cleanable/wrapping/pinata/syndie, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vJP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vKc" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"vKd" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/prison/directional/south, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/warden) +"vKe" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"vKf" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"vKl" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/library) +"vKs" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vKu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/sign/directions/evac/directional/north{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"vKB" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"vKE" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vKL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/clothing/under/rank/medical/scrubs/blue{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/medical/scrubs/purple{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/medical/scrubs/green{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/station/science/genetics) +"vKM" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vKP" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/rag{ + pixel_y = -6; + pixel_x = 6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"vKV" = ( +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"vLi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vLs" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"vLw" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/cargo/lower) +"vLy" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/medical/morgue) +"vLE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"vLS" = ( +/turf/closed/wall, +/area/station/maintenance/aft/lesser) +"vLX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/departments/science/directional/north, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vMd" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/sign/clock/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/station/security/interrogation) +"vMg" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vMr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"vMB" = ( +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vMC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/pumproom) +"vMG" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vML" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"vMO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/modular_computer/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/structure/noticeboard/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vMQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"vMV" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"vNa" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"vNk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"vNl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"vNo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_corner, +/area/station/science/ordnance) +"vNv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/engineering/engine_smes) +"vNF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"vNN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"vNO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"vNR" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/aft/lesser) +"vNS" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vNT" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"vNZ" = ( +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"vOa" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/explab) +"vOb" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/spawner/random/engineering/toolbox, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vOc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vOg" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"vOl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/fore/greater) +"vOn" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vOs" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"vOu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/recharge_station, +/obj/machinery/computer/security/telescreen/minisat/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"vOB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/cerulean, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"vOE" = ( +/obj/effect/spawner/structure/window, +/obj/effect/mapping_helpers/damaged_window, +/obj/structure/barricade/wooden/crude, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vOP" = ( +/obj/machinery/telecomms/server/presets/engineering, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"vOZ" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/sign/poster/official/random/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"vPe" = ( +/obj/machinery/computer/mechpad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"vPg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/commons/dorms) +"vPj" = ( +/obj/structure/rack, +/obj/effect/spawner/random/armory/disablers, +/obj/effect/turf_decal/bot/left, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"vPm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"vPt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/chapel{ + dir = 8 + }, +/area/station/service/chapel) +"vPB" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/central) +"vPF" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"vPG" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/primary/aft) +"vPH" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat_interior) +"vPU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vPZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/aft/lesser) +"vQa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vQb" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"vQl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"vQw" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + req_access = list("aux_base") + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"vQy" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/banner/command/mundane, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"vQE" = ( +/obj/structure/cable, +/obj/machinery/requests_console/directional/east{ + department = "Genetics"; + name = "Genetics Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/supplies, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/science/genetics) +"vQF" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"vQP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"vQQ" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"vQT" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/storage) +"vQU" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vQW" = ( +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = 2 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/closet/crate/preopen, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/sign/warning/electric_shock/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"vRe" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/jungle/c, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/grass, +/area/station/medical/virology) +"vRi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"vRp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"vRt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/departments/custodian/directional/south, +/obj/effect/turf_decal/siding/white/corner, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"vRx" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/machinery/light/directional/south{ + color = "#ffcc99" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/large, +/area/station/service/library/lounge) +"vRA" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/engineering/storage) +"vRG" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/left/directional/south{ + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/right/directional/north{ + name = "Head of Personnel's Desk"; + req_access = list("hop") + }, +/obj/machinery/door/poddoor/preopen{ + id = "queue_hop"; + name = "Privacy Shutters" + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) +"vRO" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vRQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/service/chapel) +"vRX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"vRY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/engineering/atmos) +"vSf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"vSh" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 8 + }, +/area/station/service/kitchen) +"vSi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"vSo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/arrow_cw, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"vSy" = ( +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"vSC" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"vSF" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vSH" = ( +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) +"vSI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"vSJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/noticeboard/captain{ + pixel_y = -32 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"vSM" = ( +/obj/machinery/vending/tool, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"vSN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vSR" = ( +/obj/effect/decal/cleanable/ash, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"vSW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vTa" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage/gas) +"vTe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/newspaper, +/obj/machinery/button/door/directional/east{ + id = "arrivalbarber"; + name = "Barber Shop Shutters Control" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"vTf" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"vTj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "F3-Medbay"; + codes_txt = "patrol;next_patrol=F4-Medbay" + }, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vTk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/side{ + dir = 6 + }, +/area/station/hallway/primary/fore) +"vTr" = ( +/obj/structure/sign/warning/gas_mask/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/item/toy/figure/chef{ + pixel_y = 17; + pixel_x = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"vTA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"vTC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"vTG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"vTK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"vTS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/jade, +/turf/open/space/openspace, +/area/space/nearstation) +"vTY" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase/secure, +/obj/item/taperecorder, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"vTZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/lobby) +"vUj" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vUq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"vUr" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/vatgrower{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"vUu" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"vUz" = ( +/obj/effect/turf_decal/trimline/dark_green, +/turf/open/floor/plating, +/area/station/maintenance/port) +"vUB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/dirt/station, +/area/station/maintenance/port/central) +"vUE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"vUG" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"vUI" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"vUQ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/security/medical) +"vUV" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#993333" + }, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"vUY" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/structure/desk_bell, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"vVm" = ( +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/iron/checker, +/area/station/hallway/primary/port) +"vVp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip, +/turf/open/floor/iron/white, +/area/station/science/lab) +"vVq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/structure/sign/poster/random/directional/east, +/obj/item/clothing/head/cone{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"vVr" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/primary/aft) +"vVs" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"vVy" = ( +/obj/effect/turf_decal/siding/end{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/clothing/head/costume/ushanka, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/hallway/primary/fore) +"vVC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"vVG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/stairs/left{ + color = "#5d341f"; + dir = 1 + }, +/area/station/service/library/upper) +"vVO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/brigdoor/left/directional/north{ + name = "Security Delivery"; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"vWa" = ( +/obj/machinery/computer/robotics, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/command/heads_quarters/rd) +"vWg" = ( +/obj/structure/rack, +/obj/structure/rack, +/obj/effect/spawner/random/bureaucracy/briefcase, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"vWi" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"vWm" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"vWo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"vWp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"vWq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"vWs" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/security/interrogation) +"vWt" = ( +/obj/structure/table/wood/fancy, +/obj/item/instrument/piano_synth, +/obj/item/instrument/saxophone, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"vWw" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"vWy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"vWN" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/stairs/right{ + color = "#5d341f"; + dir = 1 + }, +/area/station/cargo/mining_breakroom) +"vWV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"vWW" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"vWZ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/obj/structure/safe/floor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"vXe" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vXm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"vXn" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"vXo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/science/ordnance/testlab) +"vXs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"vXv" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"vXB" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"vXC" = ( +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + req_access = list("eva") + }, +/obj/item/kirbyplants/organic/plant10, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"vXL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation) +"vXN" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"vXQ" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"vXR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"vXT" = ( +/obj/item/folder/blue, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"vXX" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"vXY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/service/theater) +"vYb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/rock, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vYd" = ( +/obj/effect/spawner/random/structure/grille, +/obj/effect/spawner/random/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"vYf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/central) +"vYl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"vYr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/starboard/central) +"vYv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"vYy" = ( +/obj/structure/flora/rock/style_3, +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/effect/decal/cleanable/food/flour, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vYz" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/station/cargo/storage) +"vYC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"vYE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/floor/grass, +/area/station/commons/locker) +"vYG" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/exit/departure_lounge) +"vYK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vYS" = ( +/obj/item/chair/plastic, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"vYT" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/turf/open/floor/iron, +/area/station/cargo/lobby) +"vYY" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"vZa" = ( +/obj/machinery/smartfridge/organ, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/science/robotics/augments) +"vZb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"vZj" = ( +/obj/machinery/modular_computer/preset/id, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"vZs" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"vZu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"vZy" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/duct, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"vZD" = ( +/obj/structure/table, +/obj/item/clothing/head/cone{ + pixel_x = -6 + }, +/obj/item/clothing/head/cone{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/cone{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stack/rods/ten{ + pixel_y = 3; + pixel_x = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"vZF" = ( +/obj/structure/sign/poster/random/directional/south, +/obj/structure/sink/kitchen/directional/east, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/mirror/directional/west, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/aft) +"vZM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"vZT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"vZX" = ( +/obj/structure/hedge, +/obj/item/food/grown/cannabis{ + pixel_y = -13 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/marker_beacon/fuchsia, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"vZY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"vZZ" = ( +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/chair/stool/directional/south{ + pixel_y = 21 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 34 + }, +/obj/structure/sign/poster/official/ue_no/directional/south, +/obj/machinery/light/small/dim/directional/north{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/station/service/theater_dressing) +"wal" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/delivery/white{ + color = "#ff6600" + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"waE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"waF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"waG" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"waI" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "Xenobio Pen 7 Blast Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/left/directional/north{ + name = "Containment Pen #7"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"waK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"waN" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"waT" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"wba" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/command/bridge) +"wbf" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"wbg" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wbh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wbn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"wbr" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wbt" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Arena Balcony Access" + }, +/turf/open/floor/iron/stairs{ + color = "#3d3e42"; + dir = 8 + }, +/area/station/maintenance/starboard/fore) +"wby" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/red/filled, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/north{ + pixel_x = -6; + name = "Engineering Lockdown"; + id = "engielock"; + req_access = list("engineering") + }, +/obj/machinery/button/door/directional/north{ + pixel_x = 6; + name = "Atmospherics Lockdown"; + id = "atmoslock"; + req_access = list("atmospherics") + }, +/obj/structure/cable, +/obj/machinery/button/door/directional/north{ + name = "Privacy Shutters"; + id = "engielock"; + pixel_y = 34; + req_access = list("security") + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wbA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wbI" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"wbM" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/aft/greater) +"wbP" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wbY" = ( +/obj/structure/flora/bush/fullgrass, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"wbZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wce" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"wcf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/arrow_cw{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"wcg" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/side, +/area/station/security/processing) +"wcm" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/structure/flora/bush/sparsegrass/style_3, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"wcq" = ( +/obj/structure/chair/sofa/corp, +/obj/machinery/incident_display/delam/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"wcr" = ( +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/server) +"wcv" = ( +/obj/item/storage/basket, +/obj/structure/rack, +/obj/item/clothing/head/costume/rabbitears, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wcw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 4 + }, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"wcx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/obj/structure/window/spawner/directional/north, +/obj/structure/window/spawner, +/obj/structure/flora/grass/jungle/b/style_3, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"wcD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"wcQ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/cargo/sorting) +"wcX" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/prison) +"wcZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"wde" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/structure/railing{ + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"wdh" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/bounty/start_closed, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wdk" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/station/service/library) +"wdu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"wdw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"wdz" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"wdH" = ( +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/structure/closet/secure_closet/freezer/empty, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"wdK" = ( +/obj/structure/flora/bush/large/style_3, +/obj/structure/window/spawner/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/security/prison) +"wdQ" = ( +/turf/closed/wall, +/area/station/medical/lower) +"wdU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"wed" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/department/science) +"weg" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"wej" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/rnd/production/techfab/department/security, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"wer" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"wes" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"wew" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/bush/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wey" = ( +/obj/effect/turf_decal/trimline/blue/filled/shrink_cw{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F4-Medbay"; + codes_txt = "patrol;next_patrol=F5-Medbay-Lobby" + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"wez" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/station/science/ordnance/bomb) +"weH" = ( +/obj/structure/sign/departments/morgue/directional/south, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"weI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/storage/gas) +"weJ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"weW" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/construction/mining/aux_base) +"weX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/turf/open/floor/grass, +/area/station/commons/locker) +"weY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/holding_cell) +"wfo" = ( +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/end{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"wfq" = ( +/obj/structure/flora/bush/lavendergrass/style_4, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/medical/treatment_center) +"wfr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"wfx" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wfy" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wfE" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wfG" = ( +/obj/structure/flora/bush/fullgrass, +/obj/machinery/light/floor, +/turf/open/floor/grass, +/area/station/service/hydroponics/garden) +"wfJ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wfN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"wfV" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"wfW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"wgg" = ( +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/iron/white/smooth_corner{ + dir = 1 + }, +/area/station/security/prison/workout) +"wgh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"wgp" = ( +/obj/structure/flora/tree/jungle/small/style_random{ + pixel_x = -18; + pixel_y = -18 + }, +/obj/structure/marker_beacon/lime, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/flora/rock/pile/jungle/large/style_3{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/maintenance/department/bridge) +"wgE" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 1 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wgJ" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8; + pixel_x = -6 + }, +/turf/open/floor/iron/dark/small, +/area/station/command) +"wgO" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port/aft) +"wgT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/hallway/secondary/entry) +"wgY" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 5; + network = list("prison") + }, +/obj/machinery/processor, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"who" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"whp" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wht" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"why" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/commons/dorms) +"whR" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"whW" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wib" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wif" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"wih" = ( +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/security/medical) +"wik" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"win" = ( +/obj/structure/cable, +/obj/structure/sign/poster/official/cleanliness/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port/aft) +"wio" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"wix" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/hedge, +/obj/machinery/light_switch/directional/west, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"wiB" = ( +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"wiE" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wiG" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/barsign/all_access/directional/south, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/central) +"wiH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wiI" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-left" + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + id_tag = "outerbridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast Door" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wiO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"wiS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"wiT" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/corporate_suite) +"wiX" = ( +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Patient Room A" + }, +/obj/structure/curtain/cloth, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_a) +"wjb" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"wjd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"wje" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/tipper_cream_soda/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"wjf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"wjg" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 4 + }, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/iron/white, +/area/station/service/kitchen) +"wjk" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"wjr" = ( +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/station/science/lab) +"wjx" = ( +/obj/structure/hedge, +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wjK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "chaplainshutters"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/service/chapel/office) +"wjN" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"wjO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wjR" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/mechbay) +"wkb" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wke" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"wkl" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wko" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitory Maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wks" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/department/security) +"wkA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"wkC" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/security/brig/lower) +"wkD" = ( +/obj/structure/cable, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/command) +"wkG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wkK" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/openspace, +/area/station/engineering/supermatter/room/upper) +"wkN" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"wkO" = ( +/obj/structure/chair/comfy/beige, +/obj/structure/railing{ + dir = 1; + color = "#683d21" + }, +/turf/open/floor/carpet, +/area/station/service/theater) +"wkP" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"wkR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/central) +"wkV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"wkW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wkX" = ( +/obj/item/crowbar/hammer, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"wlk" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/chapel{ + dir = 1 + }, +/area/station/service/chapel) +"wll" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"wlu" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/engineering/storage) +"wlz" = ( +/obj/structure/sink/kitchen/directional/west, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/diagonal, +/area/station/security/prison/mess) +"wlB" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/machinery/pdapainter/medbay, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"wlC" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"wlE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel) +"wlI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/rock/style_2, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wlJ" = ( +/obj/structure/chair/sofa/bench, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/glass/reinforced, +/area/station/hallway/secondary/entry) +"wlL" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/ordnance) +"wlQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/obj/effect/landmark/navigate_destination/det, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/detectives_office) +"wlT" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/central) +"wlU" = ( +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"wlY" = ( +/obj/effect/turf_decal/trimline/dark_red, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 8 + }, +/obj/item/clothing/head/cone, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wmf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/airlock/research/glass{ + name = "Research and Development Lab" + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"wmj" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/structure/noticeboard/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/central) +"wmq" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/hand_labeler, +/obj/machinery/button/door/directional/south{ + name = "Virology Privacy Shutters"; + id = "viroprivacy"; + req_access = list("virology") + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"wmA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/engine, +/area/station/science/genetics) +"wmF" = ( +/obj/effect/turf_decal/trimline/blue/warning, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"wmK" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/station/ai_monitored/command/nuke_storage) +"wmO" = ( +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"wmQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/contraband/random/directional/east, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"wmR" = ( +/turf/closed/wall, +/area/station/security/prison/rec) +"wmS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/engineering/engine_smes) +"wmV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/central) +"wmY" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/minibar) +"wnh" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/chapel/office) +"wnj" = ( +/obj/structure/fence/door, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"wnk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/storage/gas) +"wnm" = ( +/obj/structure/window/spawner/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"wnn" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"wnt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/central) +"wnH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"wnI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"wnK" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname/motion/directional/north{ + network = list("minisat") + }, +/turf/open/floor/engine/hull/reinforced, +/area/station/ai_monitored/aisat/exterior) +"wnQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/flasher/directional/south{ + id = "holdingflash" + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/holding_cell) +"wnX" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wod" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"wof" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/anesthetic_mix, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"wog" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"woh" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_br/style_3, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/maintenance/aft/lesser) +"wor" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"woC" = ( +/obj/structure/hedge, +/obj/machinery/flasher/directional/north{ + id = "AI" + }, +/turf/open/floor/circuit/green, +/area/station/ai_monitored/turret_protected/ai_upload) +"woH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"woL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"woR" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/maintenance/disposal) +"woT" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"woU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"woY" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"wph" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"wpr" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/stalky, +/obj/structure/flora/bush/style_4, +/obj/structure/flora/bush/flowers_pp/style_2, +/turf/open/floor/grass, +/area/station/service/greenroom) +"wpu" = ( +/obj/effect/spawner/random/engineering/toolbox{ + pixel_y = 10 + }, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wpH" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"wpX" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/security/brig/lower) +"wqj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"wqn" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/pile/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wqo" = ( +/turf/closed/wall, +/area/station/service/bar/backroom) +"wqr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/maintenance/port/central) +"wqt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/ce) +"wqA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wqD" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "bar_counter"; + name = "Bar Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"wqO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wqQ" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"wqS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wrb" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"wrd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"wrj" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wrl" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Security Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/security/general, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"wrw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/science/genetics) +"wrx" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"wrP" = ( +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wrU" = ( +/obj/structure/hedge, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/glass, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"wrZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c20, +/obj/structure/safe, +/obj/item/clothing/gloves/boxing/golden, +/obj/item/storage/belt/champion, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"wsa" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/test_chamber/directional/east, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wsj" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/fishing{ + pixel_y = 14; + pixel_x = 3 + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"wsm" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lamp/green{ + pixel_y = 9 + }, +/obj/item/cigarette/pipe, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/fore) +"wsu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"wsI" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"wsY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/item/instrument/harmonica, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/prison) +"wtb" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/science) +"wti" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wtm" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"wtq" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Closet" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos/project) +"wtt" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/glass/reinforced, +/area/station/security/lockers) +"wtF" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/landmark/start/bitrunner, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/bitrunning/den) +"wtK" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wtO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"wtR" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/locker) +"wub" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/smooth_large, +/area/station/science/lower) +"wuf" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding{ + dir = 5 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wuj" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"wul" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"wun" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/door/window/left/directional/south{ + name = "Jetpack Storage"; + req_access = list("eva") + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"wup" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"wux" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/obj/structure/sign/warning/electric_shock/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/solars/port/aft) +"wuH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Exfiltrate Port" + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"wuQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wuX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/engineering/canister, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wve" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"wvg" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/navbeacon{ + location = "S7-Command-Lobby"; + codes_txt = "patrol;next_patrol=S8-Starboard-Hallway" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"wvk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"wvm" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/turf/open/floor/grass, +/area/station/hallway/secondary/exit/departure_lounge) +"wvp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/storage) +"wvr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/central) +"wvu" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"wvv" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/midtown_slice/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"wvB" = ( +/turf/open/floor/glass/reinforced, +/area/station/maintenance/department/science) +"wvD" = ( +/obj/structure/table, +/obj/item/pai_card{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Dormitories Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/dormitories, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"wvE" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"wvG" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/glass, +/area/station/commons/lounge) +"wvJ" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"wvL" = ( +/obj/structure/sign/clock/directional/east, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wvN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"wvO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/right/directional/south{ + name = "Containment Pen #1"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wvP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/service) +"wvS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"wvV" = ( +/obj/structure/bed/medical/anchored{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/structure/sign/clock/directional/east, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"wvW" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/warning/secure_area/directional/east, +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wvY" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"wwa" = ( +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 5 + }, +/obj/machinery/button/door/directional/east{ + name = "Security Mech Garage Door Controls"; + id = "secmechbay"; + req_access = list("security") + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/security/mechbay) +"wwi" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/medical/medbay/central) +"wwk" = ( +/obj/structure/cable, +/obj/structure/holosign/barrier/engineering, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/cargo) +"wwm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/machinery/navbeacon{ + location = "C1-Fore-Central-Fw"; + codes_txt = "patrol;next_patrol=F1-Fore-Hallway" + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wwn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"wwo" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"wwC" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"wwD" = ( +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wwI" = ( +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"wwJ" = ( +/obj/structure/rack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/clothing/suit/utility/beekeeper_suit, +/obj/item/clothing/head/utility/beekeeper_head, +/obj/item/clothing/suit/hooded/bee_costume, +/obj/item/queen_bee/bought, +/obj/item/melee/flyswatter, +/obj/machinery/requests_console/directional/west, +/obj/structure/sign/poster/random/directional/south, +/obj/item/clothing/head/hooded/bee_hood, +/turf/open/floor/bamboo, +/area/station/service/hydroponics) +"wwN" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wwQ" = ( +/turf/open/floor/carpet/neon/simple/lime/nodots, +/area/station/cargo/bitrunning/den) +"wwU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/hedge, +/turf/open/floor/wood, +/area/station/maintenance/port/fore) +"wwX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/engineering/directional/east{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wwY" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/boutique) +"wxd" = ( +/turf/closed/wall/r_wall, +/area/station/security/prison/garden) +"wxh" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"wxn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"wxp" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"wxu" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/north, +/obj/structure/sign/clock/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/yellow/diagonal_edge, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/break_room) +"wxv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"wxx" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/integrated_circuit/loaded/hello_world, +/obj/item/integrated_circuit/loaded/speech_relay{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/multitool, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"wxC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"wxD" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"wxH" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"wxN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/central) +"wxQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wxR" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/window/spawner, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/grass, +/area/station/commons/dorms) +"wxU" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/item/stock_parts/power_store/cell/high, +/turf/open/floor/iron/dark, +/area/station/command) +"wye" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"wyh" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"wyi" = ( +/turf/open/floor/iron/stairs/medium, +/area/station/medical/surgery/theatre) +"wyl" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/service) +"wyn" = ( +/obj/machinery/door/window/brigdoor/left/directional/west{ + req_access = list("security"); + name = "Engineering Cell"; + id = "engcell" + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wyp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/medical/cryo) +"wys" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wyv" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wyw" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wyx" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_br/style_2, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"wyy" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"wyA" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Chamber" + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"wyG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste Gas Output"; + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wyO" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"wyZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"wzc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/hedge, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/dorms) +"wzd" = ( +/obj/effect/turf_decal/siding{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/table/glass, +/obj/item/toy/plush/moth, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_b) +"wzh" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"wzi" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"wzr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"wzI" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/poster/official/random/directional/west, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"wzL" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/station/service/chapel/funeral) +"wzN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"wzO" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"wzR" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"wzU" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/aft/greater) +"wzV" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 1 + }, +/area/station/command/heads_quarters/hos) +"wAf" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wAh" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"wAo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"wAq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/textured, +/area/station/commons/dorms) +"wAs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"wAx" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wAz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/storage) +"wAA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage) +"wAB" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"wAN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"wAV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"wBe" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wBf" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Doors"; + pixel_y = 1; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wBi" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"wBm" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"wBn" = ( +/obj/effect/turf_decal/trimline/dark_red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/cup/rag{ + pixel_y = 14 + }, +/obj/item/reagent_containers/cup/glass/waterbottle{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/smooth_edge{ + dir = 1 + }, +/area/station/security/prison/workout) +"wBq" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/captain) +"wBy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/space/openspace, +/area/space/nearstation) +"wBB" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/central) +"wBK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"wBL" = ( +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/item/clothing/head/cone{ + pixel_x = 0; + pixel_y = -4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wBM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wBP" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"wBX" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wCe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"wCf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/siding/blue/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wCk" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Barber Shop" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/barber) +"wCn" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant1, +/obj/structure/cable, +/turf/open/floor/iron/white/smooth_corner{ + dir = 8 + }, +/area/station/medical/surgery/theatre) +"wCr" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"wCs" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"wCy" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood/end, +/obj/item/toy/cards/deck/syndicate, +/obj/item/stack/spacecash/c1{ + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"wCR" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wCZ" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"wDd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/random/directional/west, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"wDu" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/evidence) +"wDy" = ( +/obj/machinery/door/airlock/wood{ + name = "Abandoned Theater" + }, +/obj/effect/spawner/random/structure/barricade, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/maintenance/port/central) +"wDA" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/n2, +/area/station/engineering/atmos) +"wDC" = ( +/turf/open/floor/plating, +/area/station/maintenance/central) +"wDJ" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/trimline/dark, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"wDU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing{ + dir = 9; + color = "#683d21" + }, +/obj/structure/chair/wood/wings{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"wEb" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"wEh" = ( +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid4" + }, +/area/space/nearstation) +"wEj" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/science/ordnance/storage) +"wEk" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen/fountain/captain{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/toy/figure/captain{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"wEl" = ( +/obj/structure/chair/sofa/right, +/obj/item/newspaper, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"wEp" = ( +/obj/structure/table, +/obj/item/storage/dice, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"wEv" = ( +/obj/machinery/door/window/left/directional/south{ + name = "Containment Pen #1"; + req_access = list("xenobiology") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"wEE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/central) +"wEM" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/station/service/chapel/funeral) +"wEN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/chair/office, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage) +"wER" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Padded Cell"; + id_tag = "padded" + }, +/turf/open/floor/iron/white/herringbone, +/area/station/medical/patients_rooms) +"wEV" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/obj/machinery/light/small/red/dim/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/maintenance/department/science) +"wEW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile/icy/style_3, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/statue/snow/snowman, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/maintenance/port) +"wEX" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/item/kirbyplants/organic/plant22, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"wFd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"wFe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"wFg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wFj" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/gravity_generator) +"wFl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"wFr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random/directional/east, +/obj/machinery/light/directional/east{ + color = "#ffcc99" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/service/theater_dressing) +"wFs" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/structure/rack, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"wFC" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"wFD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wFE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/structure/fluff/paper/stack{ + dir = 1; + pixel_y = -3; + pixel_x = -1 + }, +/turf/open/floor/wood/tile, +/area/station/maintenance/starboard/central) +"wFF" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wFG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"wFP" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"wFU" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/medical_all, +/obj/effect/turf_decal/bot_white, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"wFV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"wFW" = ( +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/fluff/paper/stack, +/turf/open/floor/carpet/red, +/area/station/maintenance/port/aft) +"wFX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"wGa" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wGj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wGr" = ( +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/item/multitool, +/obj/item/holosign_creator/engineering, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wGt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"wGy" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"wGz" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wGA" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"wGC" = ( +/obj/docking_port/stationary/random{ + dir = 4; + name = "lavaland"; + shuttle_id = "pod_4_lavaland" + }, +/turf/open/space/openspace, +/area/space) +"wGF" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/aft/greater) +"wGM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wGO" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wGP" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/storage) +"wGV" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/grass, +/area/station/security/prison) +"wGW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wHh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"wHn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"wHB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/station/maintenance/starboard/aft) +"wHC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"wHK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"wHL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"wHO" = ( +/obj/machinery/recharge_station, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"wHP" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"wHR" = ( +/obj/machinery/holopad/secure, +/obj/effect/landmark/start/cyborg, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"wHS" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/service/library) +"wHT" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"wIb" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/medical/cryo) +"wIc" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side, +/area/station/hallway/primary/starboard) +"wIf" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"wIi" = ( +/obj/effect/mist, +/obj/effect/turf_decal/trimline/dark, +/obj/structure/bonfire/prelit, +/turf/open/floor/bamboo, +/area/station/commons/fitness/recreation/sauna) +"wIw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"wIy" = ( +/obj/effect/turf_decal/tile/brown/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"wIA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wIF" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/button/door/directional/west{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/effect/turf_decal/trimline/white/end, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/obj/effect/landmark/start/assistant, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"wIJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"wIN" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wIV" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/circuits) +"wJb" = ( +/obj/structure/window/reinforced/tinted/spawner/directional/north, +/obj/structure/window/reinforced/tinted/spawner/directional/east, +/obj/structure/window/reinforced/tinted/spawner/directional/west, +/obj/structure/window/reinforced/tinted/spawner/directional/south, +/obj/structure/hedge/opaque, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/medical/break_room) +"wJc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/station/maintenance/starboard/central) +"wJf" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter"; + dir = 1 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/fore/lesser) +"wJo" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/main) +"wJr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wJt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wJu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"wJv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"wJx" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/station/engineering/atmos) +"wJF" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/item/reagent_containers/pill/stimulant, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/starboard/fore) +"wJM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/steam_vent, +/obj/structure/sign/poster/random/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"wJN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/mug/nanotrasen{ + pixel_x = 17 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/spawner/random/bureaucracy/folder, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"wJW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wKc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/hallway/secondary/service) +"wKe" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner, +/area/station/science/genetics) +"wKf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/openspace, +/area/space/nearstation) +"wKs" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 9 + }, +/obj/structure/hedge, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"wKw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"wKx" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"wKB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"wKM" = ( +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"wKS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"wKV" = ( +/obj/structure/cable, +/obj/structure/broken_flooring/singular/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wLa" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"wLd" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/hedge, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wLh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"wLk" = ( +/obj/effect/turf_decal/siding/dark, +/obj/machinery/chem_dispenser, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"wLo" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wLq" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"wLC" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/radio/intercom/directional, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"wLD" = ( +/obj/effect/spawner/random/structure/crate_loot, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/warning/docking/directional/west, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/port) +"wLF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wLP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/central) +"wLQ" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/white/corner, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wLS" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) +"wLT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"wLX" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/iron/dark/textured, +/area/station/science/genetics) +"wMb" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"wMd" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "rdordnance"; + name = "Ordnance Containment Control"; + req_access = list("ordnance") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance/testlab) +"wMq" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"wMr" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/meeting_room) +"wMt" = ( +/obj/structure/cable, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/box/white/corners, +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"wMx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"wMG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wMM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"wMP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"wMQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"wMY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/door_timer{ + pixel_y = 32; + id = "engcell" + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"wMZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/camera/detective{ + pixel_y = 8; + pixel_x = 14 + }, +/obj/item/paper/crumpled{ + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/photo_album{ + pixel_y = 32; + pixel_x = 7 + }, +/obj/item/clothing/neck/tie/detective{ + pixel_x = -11; + pixel_y = 4 + }, +/turf/open/floor/wood/large, +/area/station/maintenance/department/bridge) +"wNc" = ( +/obj/machinery/grill, +/obj/machinery/digital_clock/directional/north, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"wNg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig/lower) +"wNs" = ( +/obj/structure/displaycase/trophy, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"wNx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"wNA" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Dock" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plating, +/area/station/maintenance/central) +"wNE" = ( +/obj/effect/turf_decal/tile/blue/anticorner/contrasted, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"wNF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wNM" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_corner{ + dir = 4 + }, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"wNP" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"wNQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"wNV" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/grass, +/area/station/science/lower) +"wNY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/status_display/door_timer{ + pixel_y = -32; + id = "scicell" + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"wNZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/wood/large, +/area/station/service/library) +"wOb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wOe" = ( +/obj/structure/table/reinforced, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/door/window/left/directional/west{ + req_access = list("medical"); + name = "Reception Desk" + }, +/obj/machinery/door/firedoor, +/obj/structure/window/spawner/directional/north, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"wOg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/small, +/area/station/hallway/secondary/command) +"wOk" = ( +/obj/effect/turf_decal/stripes/red/end{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/service/janitor) +"wOq" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"wOs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/left/directional/west{ + name = "Cargo Desk"; + req_access = list("shipping") + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/folder/yellow{ + pixel_y = 2 + }, +/obj/item/paper, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"wOt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light, +/obj/effect/turf_decal/tile/dark_blue/opposingcorners{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"wOB" = ( +/obj/structure/cable, +/obj/structure/reagent_dispensers/plumbed{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white{ + color = "#52B4E9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"wOF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Command Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/command/corporate_suite) +"wOG" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/commons/storage/primary) +"wOL" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/west, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/cargo/lower) +"wOM" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wOS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"wPa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"wPe" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/lesser) +"wPk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/sign/poster/official/build/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wPp" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/warning/yes_smoking/circle/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"wPt" = ( +/obj/effect/turf_decal/tile/yellow/diagonal_centre, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/dark/diagonal, +/area/station/engineering/lobby) +"wPv" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"wPA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"wPB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"wPE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"wPJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/storage/gas) +"wPP" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"wPS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wQb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/departments/science/directional/south, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/fore/lesser) +"wQd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "justice gas pump" + }, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) +"wQm" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/engineering/tool, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"wQC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/secondary/service) +"wQJ" = ( +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"wQL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/white, +/area/station/science/lower) +"wQO" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"wQQ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"wQU" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/sign/poster/contraband/mothic_rations/directional/north, +/turf/open/floor/grass, +/area/station/cargo/breakroom) +"wQY" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/station/command/teleporter) +"wRi" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"wRj" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"wRk" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wRq" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/service/hydroponics/garden) +"wRt" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"wRv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/glass/reinforced, +/area/space/nearstation) +"wRx" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/port) +"wRy" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/item/kirbyplants/organic/plant1, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"wRH" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wRM" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/fore/lesser) +"wRY" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/turf/open/floor/iron/dark/diagonal, +/area/station/tcommsat/computer) +"wSb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/station/science/robotics/mechbay) +"wSc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"wSm" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"wSn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wSz" = ( +/obj/effect/decal/cleanable/plasma, +/obj/item/chair/wood/wings, +/obj/effect/cult_turf, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"wSA" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"wSB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"wSE" = ( +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"wSJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"wSV" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) +"wTe" = ( +/obj/structure/aquarium/prefilled, +/obj/structure/marker_beacon/indigo, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/port) +"wTj" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/central) +"wTn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/pen{ + pixel_x = 5 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/desk_bell{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/poddoor/preopen{ + id = "engielock"; + name = "Engineering Lockdown Blast Door" + }, +/obj/structure/cable, +/obj/machinery/door/window/left/directional/west{ + name = "Engineering Desk"; + req_access = list("engineering") + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) +"wTv" = ( +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wTy" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/collectable/hardhat, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wTE" = ( +/obj/structure/table, +/obj/item/toy/foamblade, +/obj/item/toy/sword{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation) +"wTK" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"wTQ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/science) +"wTS" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wTT" = ( +/obj/item/reagent_containers/cup/soda_cans/monkey_energy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/marker_beacon/bronze, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wTV" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/box/corners{ + pixel_y = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/byteforge, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/bitrunning/den) +"wUj" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/bush/flowers_pp/style_3, +/turf/open/floor/grass, +/area/station/maintenance/central) +"wUs" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/work) +"wUy" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"wUz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/spawner/random/trash/janitor_supplies, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"wUD" = ( +/obj/structure/stairs/south, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"wUF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/pile/icy, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/flora/bush/snow/style_random, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/maintenance/port) +"wUH" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"wUK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/cargo/office) +"wUL" = ( +/obj/structure/table/glass, +/obj/item/wrench, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"wUO" = ( +/obj/machinery/door/airlock/command{ + name = "Command Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/dark, +/area/station/command/corporate_suite) +"wUR" = ( +/obj/machinery/light/small/dim/directional/south, +/turf/open/floor/carpet/red, +/area/station/maintenance/department/bridge) +"wUS" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"wUV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"wVa" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"wVb" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"wVg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/green, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Engine Coolant Bypass"; + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wVn" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) +"wVy" = ( +/obj/machinery/vending/boozeomat, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_y = 16; + pixel_x = -10 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/obj/item/reagent_containers/cup/glass/bottle/small{ + pixel_y = 20; + pixel_x = 9 + }, +/obj/item/reagent_containers/cup/glass/drinkingglass{ + pixel_y = 18 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"wVQ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/service/hydroponics/garden) +"wVR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/exit/departure_lounge) +"wVT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Science Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"wVV" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/carpet, +/area/station/service/greenroom) +"wWa" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"wWb" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/ordnance/storage) +"wWf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/red/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/stool/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/security/prison/visit) +"wWn" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) +"wWt" = ( +/obj/structure/sign/departments/science/directional/north, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/research) +"wWL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"wWM" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"wWQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"wWR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"wWS" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/closet/secure_closet/cytology, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"wWT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"wWV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair/office, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/engine_smes) +"wWX" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/engine, +/area/station/engineering/atmos/hfr_room) +"wXe" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/barsign/directional/south, +/obj/machinery/camera/autoname/directional/south{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/bar) +"wXm" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/station/ai_monitored/turret_protected/aisat/service) +"wXo" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/pestspray{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/nutrient/ez{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/cup/bottle/nutrient/rh{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"wXu" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 10 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"wXF" = ( +/turf/closed/wall, +/area/station/commons/fitness/recreation/sauna) +"wXJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"wXN" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"wXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"wXV" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"wXZ" = ( +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/commons/fitness/recreation) +"wYg" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/iron/dark/textured, +/area/station/command) +"wYi" = ( +/turf/closed/wall/r_wall, +/area/station/security/execution/transfer) +"wYk" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/razor{ + pixel_x = -3 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"wYn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"wYD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"wYE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/corporate_suite) +"wYI" = ( +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) +"wYM" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"wYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"wYS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"wZa" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/siding/thinplating_new/light/end, +/turf/open/floor/iron/white/small, +/area/station/security/prison/shower) +"wZd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/engineering/atmos/storage/gas) +"wZg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/disposal/incinerator) +"wZi" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/maintenance/aft/lesser) +"wZk" = ( +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/black, +/area/station/service/minibar) +"wZy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/spawner/random/structure/crate, +/obj/item/paperwork/cargo, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"wZz" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/starboard/central) +"wZA" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/delivery, +/obj/structure/mecha_wreckage/ripley, +/turf/open/floor/iron/smooth, +/area/station/maintenance/port/central) +"wZB" = ( +/obj/effect/decal/cleanable/vomit/nebula, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"wZE" = ( +/turf/closed/wall, +/area/station/service/hydroponics/garden) +"wZI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/fancy/black, +/obj/structure/sign/calendar/directional/east, +/obj/effect/spawner/random/bureaucracy/folder{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"wZL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/barber) +"wZS" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red/mid_joiner, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/execution/education) +"wZT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Break Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"xac" = ( +/obj/structure/railing/corner{ + dir = 1; + color = "#4874A2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"xae" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"xaB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xaG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/cytology) +"xaJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"xaL" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured, +/area/station/service/theater) +"xaO" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xaQ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"xba" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xbf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/dorms) +"xbk" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/conveyor{ + dir = 8; + id = "mining" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"xbl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"xbq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/hallway/primary/fore) +"xbv" = ( +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"xby" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xbF" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/bar/backroom) +"xbH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/interrogation) +"xbI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"xbM" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"xbQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/power/directional/east, +/obj/effect/cult_turf, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xbU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xca" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft/lesser) +"xcb" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/brown, +/turf/open/floor/iron/white/textured, +/area/station/science/circuits) +"xco" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"xcq" = ( +/obj/effect/spawner/random/engineering/tank, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/light/small/red/dim/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/herringbone, +/area/station/maintenance/department/science) +"xcw" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/musician/piano, +/obj/item/cigarette{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/station/maintenance/port/central) +"xcy" = ( +/obj/machinery/computer/quantum_console, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/abductor/ayy/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"xcD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lab) +"xcF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/sofa/bench, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/commons/dorms) +"xcO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/computer/security/telescreen/bar/directional/south{ + name = "Laser Tag Monitor" + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"xcQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external/directional/north, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xcT" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xdl" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + pixel_y = -6 + }, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"xdo" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"xdp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xdr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/central) +"xdw" = ( +/obj/structure/flora/bush/snow{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/both/style_2, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/genetics) +"xdx" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"xdD" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) +"xdV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/hedge/opaque, +/obj/structure/secure_safe/directional/west, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xei" = ( +/obj/effect/spawner/random/trash/grime, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xel" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/eighties, +/area/station/maintenance/starboard/central) +"xer" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/glass/colocup{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/heat{ + pixel_x = 14; + pixel_y = 2 + }, +/turf/open/floor/iron/white/textured, +/area/station/commons/fitness/recreation/pool) +"xeu" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos) +"xex" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"xeB" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Blue Team" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"xeC" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xeE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xeF" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass, +/obj/structure/flora/bush/fullgrass/style_3, +/obj/structure/flora/grass/jungle/a/style_2, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/maintenance/central) +"xeK" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"xeP" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/station/engineering/atmos) +"xeQ" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/pile/style_2, +/obj/structure/flora/rock/style_2, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"xeR" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"xeV" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"xeX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/siding/brown, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"xfi" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xfm" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xfq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"xfx" = ( +/turf/open/floor/glass/reinforced, +/area/station/security/prison/mess) +"xfA" = ( +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/turf/open/misc/grass, +/area/station/hallway/secondary/command) +"xfD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"xfF" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/hallway/primary/starboard) +"xfO" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xfU" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xgg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/storage/tech) +"xgj" = ( +/obj/structure/cable, +/obj/machinery/light/small/red/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xgp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"xgq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/range) +"xgs" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/spawner/random/trash/garbage, +/obj/effect/spawner/random/entertainment/money_small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xgw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/security/interrogation) +"xgx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xgP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"xgT" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"xgV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public{ + name = "Pool Room" + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/commons/toilet/shower) +"xgW" = ( +/obj/machinery/door/window/brigdoor/left/directional/south, +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/science/ordnance/storage) +"xgY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"xhc" = ( +/turf/open/floor/iron/stairs/left{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/service/theater) +"xhd" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/railing/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xhe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"xhg" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large{ + pixel_y = -4 + }, +/turf/open/floor/grass, +/area/station/service/theater) +"xhj" = ( +/obj/structure/rack, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/fluorine{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/bottle/iodine{ + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/periodic_table/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/chem_storage) +"xhn" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"xho" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"xhQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/engineering/break_room) +"xhY" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay"; + dir = 1 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyerUp"; + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/medbay/lobby) +"xhZ" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/machinery/pdapainter/research, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/rd) +"xik" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/bush/lavendergrass/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xis" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/office, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/ce) +"xiu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/department/science) +"xiv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/commons/dorms) +"xiD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"xiH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"xiN" = ( +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/poddoor/shutters/window{ + id = "gateshutter"; + name = "Gateway Access Shutter"; + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"xiO" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/station/service/chapel) +"xiZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable/layer3, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/foyer) +"xji" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rdordnance"; + name = "Ordnance Lab Shutters" + }, +/turf/open/floor/plating, +/area/station/science/ordnance) +"xjj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xjl" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/marker_beacon/lime, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"xjo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"xjq" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xjr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/laser_pointer{ + pixel_x = 3 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"xjt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/machinery/light/directional/north, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"xjv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/engineering/atmos/storage) +"xjB" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark_blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xjE" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 9 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xjQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/neutral/warning, +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/turf/open/floor/iron/textured, +/area/station/hallway/primary/fore) +"xka" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"xkc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/security/prison) +"xkf" = ( +/obj/effect/turf_decal/trimline/dark/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner, +/obj/effect/turf_decal/trimline/green/corner, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"xkj" = ( +/obj/machinery/power/supermatter_crystal/engine, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/engine, +/area/station/engineering/supermatter) +"xkm" = ( +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 1 + }, +/area/station/service/chapel) +"xkr" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"xku" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"xkw" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/main) +"xkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xkB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 4 + }, +/area/station/security/prison/work) +"xkD" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/corner, +/area/station/hallway/secondary/exit/departure_lounge) +"xkE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/corner, +/area/station/hallway/primary/fore) +"xkG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood/tile, +/area/station/service/library/upper) +"xkM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/security/courtroom/holding) +"xkQ" = ( +/obj/structure/statue/sandstone/venus{ + dir = 8; + anchored = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"xkS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xkT" = ( +/obj/machinery/door/airlock/public{ + name = "Restroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/security/breakroom) +"xkW" = ( +/obj/effect/landmark/start/cyborg, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/turret_protected/aisat/service) +"xla" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"xle" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"xlf" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"xli" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console"; + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xlk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) +"xln" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"xlq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"xlt" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"xlx" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"xlD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xlF" = ( +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/port) +"xlK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"xlL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xlO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xlS" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) +"xlT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"xlV" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xlW" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/primary/port) +"xlX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/plastic, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xlZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/north, +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"xmk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos/project) +"xmr" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xmt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable/layer3, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"xmv" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/effect/spawner/random/trash/janitor_supplies, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/warehouse) +"xmx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"xmH" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/stack/cable_coil/cut, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/station/solars/port/aft) +"xmJ" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 6 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"xmL" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/left/directional/south{ + name = "Departure Lounge Security Post"; + req_access = list("security") + }, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/escape) +"xmO" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"xmR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/hangover, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"xmY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/engineering/atmos) +"xmZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/effect/turf_decal/siding/blue, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xnb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/structure/grille, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xnc" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/turf/open/floor/plating, +/area/station/security/processing) +"xnk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled, +/obj/machinery/light/floor, +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) +"xnq" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/sign/poster/contraband/shamblers_juice/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/maintenance/port/central) +"xnv" = ( +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/carpet/neon/simple/red/nodots, +/area/station/commons/fitness/recreation/lasertag) +"xny" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Plasma to Pure" + }, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xnA" = ( +/obj/effect/turf_decal/siding{ + dir = 9 + }, +/obj/machinery/shower/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/trimline/purple/end, +/obj/structure/curtain, +/obj/structure/fluff/shower_drain, +/obj/machinery/door/window/left/directional/south, +/turf/open/floor/iron/white/textured_large, +/area/station/science/breakroom) +"xnB" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/cargo/warehouse) +"xnE" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark, +/obj/machinery/light/floor{ + color = "#66ccff" + }, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"xnF" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/cargo/lower) +"xnN" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/bot, +/obj/machinery/digital_clock/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/storage_shared) +"xnQ" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xoa" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"xob" = ( +/turf/open/floor/iron/stairs/right{ + dir = 4; + color = "#3d3e42" + }, +/area/station/service/theater) +"xoe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"xof" = ( +/obj/machinery/holopad, +/turf/open/floor/glass/reinforced, +/area/station/commons/fitness/recreation) +"xoh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"xon" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/item/banner/security/mundane, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/security/breakroom) +"xor" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xot" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/clock/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xow" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth{ + color = "#36373a" + }, +/turf/open/floor/plating, +/area/station/commons/lounge) +"xox" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"xoD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/office) +"xoF" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xoJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/light/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/hfr_room) +"xoR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/structure/sign/departments/rndserver/directional/north, +/obj/machinery/telecomms/server{ + icon_state = "blackbox"; + name = "Radio Recorder"; + desc = "A machine used to store radio data." + }, +/obj/item/broadcast_camera{ + camera_networks = list("dj"); + broadcast_name = "Radio Station News"; + pixel_x = 0; + pixel_y = 15 + }, +/turf/open/floor/circuit/green, +/area/station/maintenance/starboard/fore) +"xoU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"xpa" = ( +/obj/machinery/plumbing/synthesizer/beer, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/item/food/grown/tobacco{ + preserved_food = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"xpl" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/window/spawner/directional/south, +/obj/effect/turf_decal/trimline/dark_red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"xpm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xpn" = ( +/obj/structure/railing, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"xpq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/commons/fitness/recreation) +"xpt" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/edge{ + dir = 8 + }, +/area/station/security/prison) +"xpC" = ( +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/sign/warning/biohazard/directional/west, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xpE" = ( +/obj/structure/hedge, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"xpF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"xpG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xpL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xpO" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/glass, +/area/station/commons/lounge) +"xpV" = ( +/obj/structure/window/spawner/directional/west, +/obj/structure/window/spawner/directional/east, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/north, +/obj/structure/flora/rock/pile/icy/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/grass/green/style_random, +/obj/structure/flora/bush/snow/style_random, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lobby) +"xpX" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"xpY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Access Shutter"; + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"xqd" = ( +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/fore) +"xqn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xqt" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/glass, +/area/station/hallway/secondary/service) +"xqy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"xqz" = ( +/obj/structure/flora/bush/flowers_br/style_2, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"xqA" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"xqN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/right/directional/south{ + name = "Containment Pen #3"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xrb" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/stack/package_wrap{ + pixel_y = 21 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 8 + }, +/area/station/cargo/storage) +"xrh" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/ash, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/aft/lesser) +"xrj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/machinery/door/window/brigdoor/left/directional/east{ + name = "Secure Creature Pen"; + req_access = list("xenobiology") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xrq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/station/service/library/upper) +"xru" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/trimline/neutral, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/item/clothing/gloves/color/grey, +/obj/structure/cable, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"xrw" = ( +/obj/structure/table/reinforced/rglass, +/obj/machinery/computer/records/medical/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/item/stamp/head/cmo{ + pixel_x = -16; + pixel_y = 6 + }, +/turf/open/floor/carpet/blue, +/area/station/command/heads_quarters/cmo) +"xrx" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"xrO" = ( +/obj/structure/table/reinforced/rglass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/microwave, +/turf/open/floor/iron/white, +/area/station/security/prison/mess) +"xrS" = ( +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leavy/style_2, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/science/xenobiology) +"xrX" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/rock/pile/style_random, +/turf/open/floor/grass, +/area/station/cargo/lobby) +"xrY" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"xsg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/hangover, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xsh" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"xsq" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/station/solars/port/fore) +"xsr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) +"xsw" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/table/reinforced/rglass, +/obj/machinery/processor{ + pixel_x = -3 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"xsx" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/white/herringbone, +/area/station/commons/toilet/restrooms) +"xsN" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"xsO" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/flora/grass/jungle/b/style_2, +/turf/open/water, +/area/station/ai_monitored/aisat/exterior) +"xsP" = ( +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"xsT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/security/brig) +"xsV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/engineering/atmos/storage) +"xta" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"xte" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/stairs{ + color = "#3d3e42" + }, +/area/station/medical/morgue) +"xtp" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/window/left/directional/east{ + name = "Corpse Arrivals" + }, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"xtz" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xtA" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"xtC" = ( +/obj/effect/turf_decal/trimline/purple/line, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"xtH" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/structure/broken_flooring/singular/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xum" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"xus" = ( +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/cargo/sorting) +"xut" = ( +/turf/open/floor/glass, +/area/station/service/kitchen/diner) +"xuw" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xuz" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xuB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xuD" = ( +/obj/effect/spawner/random/trash/grime, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xuG" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xuH" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/trimline/green/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/item/reagent_containers/cup/coffeepot{ + pixel_y = 19 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/bar/backroom) +"xuN" = ( +/obj/effect/turf_decal/caution/red, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xuS" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/lockers) +"xuX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/lockers) +"xuZ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xvc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"xvj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"xvl" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"xvm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/energy_swords/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/maintenance/starboard/central) +"xvq" = ( +/obj/structure/hedge, +/obj/machinery/light/directional/north, +/obj/structure/sign/clock/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/medical/break_room) +"xvt" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/b, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"xvz" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/obj/effect/turf_decal/trimline/dark/end, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"xvA" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xvD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 8 + }, +/area/station/security/range) +"xvF" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/marker_beacon/jade, +/turf/open/floor/holofloor/wood, +/area/station/ai_monitored/aisat/exterior) +"xvH" = ( +/obj/item/kirbyplants/organic/plant22{ + pixel_y = 9 + }, +/obj/effect/turf_decal/trimline/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/library/lounge) +"xvJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/maintenance/aft/lesser) +"xvK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/computer/atmos_control/nocontrol/master{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_half, +/area/station/engineering/atmos) +"xvR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/airless, +/area/station/solars/starboard/fore) +"xvT" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/rack, +/obj/item/clothing/suit/utility/radiation, +/obj/item/clothing/head/utility/radiation, +/obj/item/geiger_counter, +/obj/item/clothing/glasses/meson, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) +"xvU" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"xwf" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/machinery/duct, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xwg" = ( +/turf/closed/wall, +/area/station/service/greenroom) +"xwm" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/a/style_3, +/obj/structure/flora/bush/flowers_br, +/turf/open/floor/grass, +/area/station/maintenance/aft/lesser) +"xwr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/floor{ + color = "#ffcc99" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"xwx" = ( +/obj/effect/spawner/structure/window/reinforced/plasma, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "HFR Shutters"; + id = "hfr"; + dir = 8 + }, +/turf/open/floor/plating/icemoon, +/area/station/engineering/atmos/hfr_room) +"xwG" = ( +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"xwH" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) +"xwK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "F6-Medbay"; + codes_txt = "patrol;next_patrol=F7-Medbay" + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"xwP" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"xwW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "Security Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"xwX" = ( +/obj/effect/spawner/random/structure/closet_empty/crate, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"xxd" = ( +/obj/structure/noticeboard/directional/north, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen/fountain{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/station/command/corporate_suite) +"xxi" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xxk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "Pharmacy Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/pharmacy, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xxx" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/break_room) +"xxB" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xxE" = ( +/obj/structure/railing/corner/end{ + dir = 8 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"xxR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xxS" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/table/glass, +/obj/machinery/photocopier{ + pixel_y = 5 + }, +/turf/open/floor/iron/white, +/area/station/science/research) +"xxU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"xyb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/dice, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/commons/dorms) +"xyg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xyh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/commons/locker) +"xyj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/central) +"xyo" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hop) +"xyq" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xyw" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) +"xyz" = ( +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xyA" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/security/brig) +"xyC" = ( +/obj/effect/spawner/random/structure/closet_maintenance, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/random/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"xyI" = ( +/obj/effect/spawner/random/contraband/cannabis, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/machinery/hydroponics/soil, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/grass, +/area/station/security/prison/garden) +"xyJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "capoffice"; + name = "Privacy Control"; + pixel_y = 26; + req_access = list("captain"); + pixel_x = -7 + }, +/obj/machinery/light/directional/north, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/keycard_auth/wall_mounted/directional/north{ + pixel_x = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"xyK" = ( +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance" + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xyN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port) +"xyR" = ( +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + name = "Red Team"; + id = "laserred" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation/lasertag) +"xyS" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/white/corner{ + dir = 1 + }, +/area/station/service/kitchen) +"xzb" = ( +/turf/closed/wall/mineral/plastitanium, +/area/station/commons/dorms) +"xzd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xzj" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/science/robotics/storage) +"xzq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/station/service/library/lounge) +"xzu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"xzC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"xzH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"xzI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"xzP" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/checker{ + dir = 8 + }, +/area/station/hallway/primary/aft) +"xzQ" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/maintenance/fore/lesser) +"xzR" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Customs" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/red/filled, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/dark/smooth_large, +/area/station/security/checkpoint/customs) +"xzU" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/courtroom/holding) +"xAe" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/railing/corner/end/flip, +/obj/structure/railing/corner/end{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xAh" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + location = "A3-Aft-Hallway"; + codes_txt = "patrol;next_patrol=C3-Aft-Central-B" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"xAE" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small/red/directional/north, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/starboard/aft) +"xAF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/rock/pile/style_2, +/obj/item/clothing/head/cone, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xAG" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos/project) +"xAI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"xAY" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"xBb" = ( +/obj/effect/turf_decal/siding/dark, +/obj/structure/table/glass, +/obj/machinery/digital_clock/directional/north, +/obj/item/toy/cards/deck{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/reagent_containers/condiment/saltshaker{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_containers/condiment/peppermill{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/medical/pharmacy) +"xBf" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xBh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/openspace, +/area/station/solars/port/fore) +"xBj" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/minibar) +"xBk" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command) +"xBo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"xBB" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"xBE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"xBG" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/storage/gas) +"xBI" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/iron/dark, +/area/station/security/breakroom) +"xBK" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"xBN" = ( +/turf/open/floor/iron/stairs{ + color = "#5d341f"; + dir = 4 + }, +/area/station/commons/lounge) +"xBR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"xBV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"xBY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/textured_corner{ + dir = 8 + }, +/area/station/engineering/engine_smes) +"xBZ" = ( +/obj/machinery/newscaster/directional/south, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","rd") + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) +"xCc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"xCd" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xCe" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"xCf" = ( +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/clothing/glasses/meson, +/obj/structure/rack, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"xCj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/generic, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"xCp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xCr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xCu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) +"xCF" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/servingdish, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"xCN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/machinery/newscaster/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"xCZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron/white, +/area/station/science/lower) +"xDc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/fitness/recreation/lasertag) +"xDe" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"xDi" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/cafeteria) +"xDl" = ( +/obj/effect/spawner/random/structure/tank_holder, +/turf/open/floor/plating, +/area/station/maintenance/department/bridge) +"xDm" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/book/bible{ + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel) +"xDs" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/station/command) +"xDC" = ( +/obj/effect/turf_decal/trimline/white/arrow_ccw{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/security/prison) +"xDH" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/engineering/break_room) +"xDI" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xDQ" = ( +/obj/structure/flora/rock/style_random, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid0" + }, +/area/space/nearstation) +"xDS" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/greenroom) +"xDU" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xDX" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/landmark/start/hangover, +/turf/open/floor/glass/reinforced, +/area/station/hallway/primary/fore) +"xDY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xEf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/commons/dorms) +"xEi" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"xEk" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) +"xED" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/station/science/ordnance/burnchamber) +"xEG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"xER" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Kitchen Junction" + }, +/obj/effect/mapping_helpers/mail_sorting/service/kitchen, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xES" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"xFa" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xFe" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/glass/reinforced, +/area/station/maintenance/starboard/central) +"xFk" = ( +/obj/structure/cable, +/obj/structure/chair/sofa/bench/right, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/aft/greater) +"xFo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"xFp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/fore/lesser) +"xFv" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"xFw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xFD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/captain) +"xFE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/maintenance/starboard/central) +"xFK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"xFL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xFP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/command/heads_quarters/rd) +"xFT" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/station/security/brig/lower) +"xFX" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 5 + }, +/turf/open/floor/iron/white, +/area/station/security/execution/transfer) +"xFY" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/lesser) +"xFZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/obj/effect/spawner/random/trash/garbage{ + spawn_scatter_radius = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/port/fore) +"xGg" = ( +/obj/structure/hedge, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/nuke_storage) +"xGh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/station/hallway/secondary/exit/departure_lounge) +"xGi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"xGl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"xGn" = ( +/obj/item/stack/rods/ten, +/obj/item/stack/sheet/iron/five, +/obj/structure/table, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xGo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"xGr" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xGw" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4; + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/theater) +"xGM" = ( +/turf/closed/wall, +/area/station/maintenance/starboard/fore) +"xGN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"xGT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/right/directional/north{ + req_access = list("security"); + name = "Security Post - Science" + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "medsecprivacy"; + name = "Privacy Shutter" + }, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science) +"xGV" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/station/security/checkpoint/escape) +"xGX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"xHa" = ( +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 8 + }, +/obj/effect/turf_decal/bot/left, +/turf/open/floor/iron/dark/diagonal, +/area/station/construction/mining/aux_base) +"xHc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/smartfridge/drinks, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall, +/area/station/maintenance/fore/lesser) +"xHi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/engine_smes) +"xHk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xHl" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/chem_heater/withbuffer, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/medical/pharmacy) +"xHu" = ( +/obj/structure/chair/plastic, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"xHw" = ( +/obj/item/storage/box/lights/mixed, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stock_parts/power_store/cell/emproof{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/engine_smes) +"xHz" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/obj/machinery/door/window/right/directional/south{ + name = "First Aid Supplies"; + req_access = list("medical") + }, +/obj/machinery/digital_clock/directional/north, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/toxin, +/obj/item/storage/medkit/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"xHC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/large, +/area/station/service/theater) +"xHE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/dark, +/area/station/medical/lower) +"xHL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/table_clock{ + pixel_y = 6 + }, +/turf/open/floor/wood/parquet, +/area/station/cargo/mining_breakroom) +"xHM" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/station/service/kitchen/diner) +"xHN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"xHO" = ( +/obj/effect/turf_decal/trimline/dark/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"xIb" = ( +/obj/structure/chair/stool/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/locker) +"xIc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"xId" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xIe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/hos) +"xIi" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/effect/turf_decal/bot/right, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/service/janitor) +"xIk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil/five, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/obj/structure/sign/poster/official/moth_hardhat/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_corner, +/area/station/maintenance/starboard/aft) +"xIm" = ( +/obj/structure/hedge, +/turf/open/floor/iron/dark/textured_large, +/area/station/medical/morgue) +"xIq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/hallway/secondary/exit/departure_lounge) +"xIs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xIv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/red/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xIA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/station/science/explab) +"xIE" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/turf/open/floor/iron/dark/textured_corner, +/area/station/hallway/secondary/command) +"xIP" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"xIQ" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/structure/sign/poster/random/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xIR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/interrogation/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/security/brig) +"xIW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/medical/pharmacy) +"xJf" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xJi" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/black, +/area/station/commons/lounge) +"xJq" = ( +/obj/structure/cable, +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) +"xJr" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/bluespace_vendor/directional/north, +/obj/item/wallframe/digital_clock{ + pixel_y = 8 + }, +/obj/item/wallframe/digital_clock{ + pixel_y = 4 + }, +/obj/item/wallframe/digital_clock, +/turf/open/floor/iron/dark, +/area/station/commons/storage/primary) +"xJz" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"xJA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"xJC" = ( +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/holding_cell) +"xJJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xJN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xJO" = ( +/obj/item/pizzabox, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid11" + }, +/area/space/nearstation) +"xJQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos) +"xJR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/white/corner{ + dir = 4 + }, +/area/station/hallway/primary/fore) +"xJX" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/science/lobby) +"xKb" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/parquet, +/area/station/medical/psychology) +"xKc" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin/tagger, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"xKe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/station/service/library/upper) +"xKj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xKl" = ( +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/machinery/light/floor/broken, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) +"xKn" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"xKx" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"xKy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xKB" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/commons/dorms) +"xKD" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"xKE" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/effect/turf_decal/trimline/dark_red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"xKG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xKJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"xKK" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/firealarm/directional/west, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/aisat/teleporter) +"xLb" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/button/door/directional/north{ + name = "Mech Bay Shutters Control"; + id = "mechbay"; + req_access = list("robotics") + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/mechbay) +"xLd" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/disposal/bin{ + pixel_y = -2 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/cargo/miningoffice) +"xLg" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/rock/pile/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xLp" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/closet/secure_closet/chemical, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/station/medical/pharmacy) +"xLr" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 4; + req_access = null + }, +/obj/effect/turf_decal/bot/right, +/turf/open/floor/iron/dark/diagonal, +/area/station/construction/mining/aux_base) +"xLs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"xLt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/rack, +/obj/machinery/light/directional/west, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/iron/dark/textured_large, +/area/station/cargo/miningoffice) +"xLz" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/button/elevator/directional/east{ + id = "Bridge2Elevator" + }, +/obj/machinery/lift_indicator/directional/east{ + pixel_x = 31; + pixel_y = -1; + linked_elevator_id = "Bridge2Elevator" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/window/elevator/left/directional/north{ + elevator_mode = 1; + transport_linked_id = "Bridge2Elevator" + }, +/obj/machinery/camera/autoname/directional/west{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/hallway/secondary/command) +"xLJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/engineering/supermatter/room) +"xLW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/ai_monitored/security/armory) +"xLX" = ( +/turf/open/floor/carpet/red, +/area/station/security/detectives_office) +"xMe" = ( +/obj/effect/turf_decal/siding/dark/end{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"xMk" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/structure/sign/departments/lawyer/directional/east, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/textured_large, +/area/station/security/courtroom) +"xMn" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/execution/transfer) +"xMo" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command) +"xMp" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xMr" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/steam_vent, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xMt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/structure/tank_holder/extinguisher, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/commons/fitness/recreation) +"xMv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/bookcase/random, +/obj/item/poster/random_contraband{ + pixel_y = 18 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"xMy" = ( +/obj/item/clothing/head/cone{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"xMz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/starboard/central) +"xMB" = ( +/obj/effect/turf_decal/siding/dark/corner, +/obj/effect/turf_decal/trimline/white/filled/corner, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/structure/noticeboard/directional/north{ + pixel_y = 36 + }, +/obj/item/reagent_containers/condiment/vegetable_oil{ + pixel_y = 16; + pixel_x = -6 + }, +/obj/item/reagent_containers/condiment/peanut_butter{ + pixel_y = 4; + pixel_x = -7 + }, +/obj/item/reagent_containers/condiment/cherryjelly{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/reagent_containers/condiment/honey{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/iron/white/side{ + dir = 9 + }, +/area/station/service/kitchen) +"xME" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/fore) +"xMF" = ( +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/ai_monitored/command/storage/eva) +"xMI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/medical/treatment_center) +"xMQ" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/turf/open/floor/iron/white/textured, +/area/station/medical/chemistry) +"xMR" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + space_dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/station/commons/dorms) +"xMU" = ( +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid12" + }, +/area/space/nearstation) +"xMX" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer1, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/ordnance) +"xNb" = ( +/obj/effect/turf_decal/tile/blue/full, +/obj/effect/spawner/random/engineering/tracking_beacon, +/turf/open/floor/iron/white/small, +/area/station/medical/treatment_center) +"xNc" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) +"xNo" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_pp, +/turf/open/floor/grass, +/area/station/maintenance/central) +"xNp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xNr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/science/research) +"xNA" = ( +/obj/effect/turf_decal/tile/dark_green/anticorner/contrasted, +/obj/effect/turf_decal/trimline/dark_green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"xNC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/tank_holder/extinguisher/advanced, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/station/engineering/atmos) +"xNE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/right/directional/north, +/obj/item/reagent_containers/cup/glass/mug/britcup{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6; + pixel_x = -23 + }, +/obj/item/storage/box/coffeepack{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/iron/dark, +/area/station/science/breakroom) +"xNG" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/dark/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"xNN" = ( +/obj/effect/spawner/random/trash/box, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xNO" = ( +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_half, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"xNP" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"xNW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/fitness/recreation/lasertag) +"xNY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos) +"xOa" = ( +/obj/effect/turf_decal/trimline/dark_green/filled/shrink_ccw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/iron/dark/side{ + dir = 2 + }, +/area/station/maintenance/port) +"xOc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/chair, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/maintenance/starboard/central) +"xOi" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/smooth_half{ + dir = 4 + }, +/area/station/security/prison) +"xOm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"xOn" = ( +/obj/item/tank/internals/anesthetic{ + pixel_x = 3 + }, +/obj/item/tank/internals/anesthetic, +/obj/item/tank/internals/anesthetic{ + pixel_x = -3 + }, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -3 + }, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical{ + pixel_y = 3 + }, +/obj/structure/rack, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/medical/surgery/theatre) +"xOD" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark/textured, +/area/station/maintenance/port/aft) +"xOK" = ( +/obj/machinery/modular_computer/preset/id{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/station/command/heads_quarters/ce) +"xOP" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"xOV" = ( +/obj/structure/toilet/greyscale{ + pixel_y = 14 + }, +/obj/structure/mirror/directional/east, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/confetti, +/obj/machinery/light/small/dim/directional/south, +/obj/effect/landmark/blobstart, +/turf/open/floor/iron/white/small, +/area/station/maintenance/starboard/central) +"xOZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/chair/sofa/bench/solo{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xPk" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage) +"xPm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Clothes Shop Shutters"; + id = "arrivalclothes" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/boutique) +"xPo" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/treatment_center) +"xPx" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/station/command/gateway) +"xPC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Primary Treatment Centre" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"xPD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xPE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"xPK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xPN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/structure/grille, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xPS" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line, +/obj/effect/turf_decal/siding/dark, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/command) +"xPT" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/coffeemaker/impressa{ + pixel_x = 2 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/structure/cable, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"xPW" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/toolbox/emergency{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/multitool, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xPY" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/sign/poster/official/moth_piping/directional/east, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/gravity_generator) +"xQg" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xQi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xQn" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/poster/random/directional/east, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/aft) +"xQs" = ( +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/iron/white/small, +/area/station/commons/toilet/shower) +"xQt" = ( +/obj/structure/closet/emcloset, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/security/processing) +"xQv" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xQB" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/chair, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"xQM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xQV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/aft/greater) +"xRc" = ( +/obj/structure/table/glass, +/obj/structure/window/spawner/directional/south, +/obj/structure/window/spawner/directional/west, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/fire, +/obj/item/storage/medkit/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) +"xRd" = ( +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/hedge, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/sign/poster/contraband/red_rum/directional/south, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"xRf" = ( +/obj/machinery/chem_master, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/iron/dark/herringbone, +/area/station/medical/chemistry) +"xRh" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/engineering/main) +"xRk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "qmprivacy"; + name = "Privacy Shutters Control"; + req_access = list("qm"); + pixel_y = -6 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/keycard_auth/wall_mounted/directional/east{ + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/qm) +"xRq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/effect/turf_decal/siding/blue, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/lower) +"xRr" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room/upper) +"xRu" = ( +/obj/effect/decal/cleanable/confetti, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xRB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/carpet/red, +/area/station/service/library) +"xRC" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat/atmos) +"xRE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xRH" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/science/robotics/lab) +"xRQ" = ( +/obj/effect/turf_decal/trimline/dark_blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/hallway/secondary/command) +"xRV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/prison/garden) +"xSn" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"xSp" = ( +/obj/structure/closet{ + name = "evidence closet 3" + }, +/obj/effect/turf_decal/trimline/red, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/evidence) +"xSu" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/science) +"xSw" = ( +/obj/structure/railing/corner/end/flip, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/brown{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/cargo/miningoffice) +"xSA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "medsecprivacy"; + name = "Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/checkpoint/medical) +"xSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"xSI" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Xenobiology Lab - Pen #8"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"xSL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"xSM" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/dog_bone, +/obj/structure/flora/bush/leavy/style_random, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"xSP" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bandages{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/cup/bottle/morphine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/siding/dark_red{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/execution/transfer) +"xSR" = ( +/obj/structure/sign/clock/directional/south, +/obj/structure/hedge, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"xSY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white, +/area/station/hallway/primary/fore) +"xSZ" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xTe" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/chair/sofa/bench/right, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/security/checkpoint/customs) +"xTg" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xTh" = ( +/obj/structure/table/wood, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/commons/vacant_room/office) +"xTp" = ( +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area/directional/north, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/maintenance/starboard/central) +"xTz" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = -3 + }, +/obj/item/clothing/gloves/cargo_gauntlet, +/obj/item/clothing/gloves/cargo_gauntlet{ + pixel_y = 3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/dark, +/area/station/cargo/storage) +"xTO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/stairs/medium, +/area/station/hallway/primary/fore) +"xTU" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/command/gateway) +"xTZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xUa" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/armband/hydro, +/obj/item/wrench, +/obj/item/clothing/suit/apron, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/hydroponics) +"xUj" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/folder/blue{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/stamp/head/captain{ + pixel_y = -12; + pixel_x = -6 + }, +/obj/item/pen/fountain/captain{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"xUm" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/cmo) +"xUq" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted, +/obj/effect/turf_decal/trimline/dark_blue/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"xUr" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/table/reinforced/rglass, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"xUv" = ( +/obj/effect/turf_decal/tile/dark/diagonal_centre, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/table/reinforced/rglass, +/obj/item/reagent_containers/cup/beaker/large{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/reagent_containers/cup/beaker{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_containers/cup/rag{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/iron/white/diagonal, +/area/station/service/kitchen) +"xUG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/wood/large, +/area/station/service/theater) +"xUO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xUP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"xUR" = ( +/obj/effect/turf_decal/tile/dark/opposingcorners, +/turf/open/floor/iron/dark, +/area/station/service/bar) +"xVe" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/toolcloset, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) +"xVi" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"xVl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera/autoname/directional/north{ + network = list("minisat") + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/turret_protected/aisat_interior) +"xVs" = ( +/obj/structure/noticeboard/qm{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/cargo/lower) +"xVv" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/commons/vacant_room/office) +"xVy" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/radshelter/civil) +"xVD" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"xVF" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"xVN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"xVT" = ( +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/janitor) +"xVV" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"xVX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/chair/sofa/bench/left, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) +"xWb" = ( +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"xWe" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/quantum_server, +/obj/item/clothing/mask/party_horn{ + pixel_y = 14 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/circuit/green, +/area/station/cargo/bitrunning/den) +"xWo" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"xWq" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 9 + }, +/obj/item/lighter{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/hop) +"xWD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"xWR" = ( +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/iron/white/textured, +/area/station/medical/chemistry) +"xWS" = ( +/obj/effect/turf_decal/trimline/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/security/brig/lower) +"xWZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"xXc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/supply) +"xXh" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/service/janitor) +"xXi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"xXj" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/button/door/directional/west{ + id = "radiobolt"; + normaldoorcontrol = 1; + specialfunctions = 4; + name = "Door Bolt Control" + }, +/obj/structure/noticeboard/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/station/maintenance/starboard/fore) +"xXv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"xXD" = ( +/obj/docking_port/stationary{ + dir = 8; + height = 11; + name = "port bay 2"; + shuttle_id = "ferry_home"; + width = 5; + dwidth = 2 + }, +/turf/open/space/basic, +/area/space) +"xXF" = ( +/obj/effect/turf_decal/siding/purple, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/science/breakroom) +"xXH" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/port/aft) +"xXM" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/security_all, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/iron/dark/small, +/area/station/engineering/storage/tech) +"xXO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/radiation, +/obj/item/analyzer, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/disposal/incinerator) +"xXP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/ai_monitored/turret_protected/aisat/maint) +"xXR" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/photo_album/prison{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/camera{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/carpet/red, +/area/station/security/prison/rec) +"xXT" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"xXX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/siding/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/science/explab) +"xYr" = ( +/obj/structure/flora/bush/fullgrass, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/leavy/style_2, +/obj/structure/flora/bush/flowers_pp, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/large{ + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/grass, +/area/station/hallway/primary/port) +"xYt" = ( +/obj/effect/spawner/random/engineering/atmospherics_portable, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"xYw" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/clothing/head/utility/welding, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/atmos) +"xYz" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xYD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42"; + dir = 4 + }, +/area/station/security/prison) +"xYF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/security/office) +"xYK" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/carpet, +/area/station/command/heads_quarters/qm) +"xYU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/office) +"xYX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/engineering/atmos) +"xZg" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/station/hallway/primary/port) +"xZr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast Door" + }, +/obj/structure/cable, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"xZv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/execution/transfer) +"xZx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/white, +/area/station/science/research) +"xZB" = ( +/obj/effect/spawner/random/structure/table_or_rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"xZG" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"xZI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"xZJ" = ( +/obj/effect/spawner/random/trash/caution_sign, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/maintenance/port/central) +"xZL" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"xZP" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/command/gateway) +"xZQ" = ( +/obj/effect/turf_decal/tile/dark_blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/small, +/area/station/commons/fitness/recreation/pool) +"xZZ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/broken_flooring/pile/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"yad" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/main) +"yai" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/upper) +"yaj" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"yal" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"yan" = ( +/obj/structure/flora/grass/green/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/lavendergrass/style_3, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light{ + dir = 8 + }, +/turf/open/misc/asteroid/snow/standard_air, +/area/station/science/lab) +"yas" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/engineering/atmos/pumproom) +"yaC" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/banner/command/mundane, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command) +"yaH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/commons/dorms) +"yaQ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/solo, +/turf/open/floor/iron/dark/herringbone, +/area/station/ai_monitored/aisat/exterior) +"yaR" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/trimline/brown, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/station/cargo/miningoffice) +"yaX" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) +"ybd" = ( +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/science/xenobiology) +"ybp" = ( +/turf/closed/wall, +/area/station/maintenance/fore/greater) +"ybr" = ( +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/clothing/shoes/sneakers/orange, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/structure/rack, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/station/security/holding_cell) +"ybx" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) +"ybI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/random/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/central) +"ybK" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_3{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/station/command/heads_quarters/ce) +"ybM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"ybQ" = ( +/obj/effect/turf_decal/siding/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 4 + }, +/area/station/command/corporate_suite) +"ybS" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/station/commons/vacant_room/commissary) +"ybX" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Break Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/break_room) +"ybZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Test Chamber Blast Door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) +"ycc" = ( +/obj/effect/turf_decal/siding/brown/corner, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/construction/mining/aux_base) +"ycd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + location = "P4-Service-Hallway"; + codes_txt = "patrol;next_patrol=P5-Bar" + }, +/turf/open/floor/wood/large, +/area/station/hallway/primary/port) +"yck" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"ycn" = ( +/obj/machinery/door/window/left/directional/west{ + name = "Hydroponics Desk"; + req_access = list("hydroponics") + }, +/obj/machinery/door/window/left/directional/east{ + name = "Kitchen Desk"; + req_access = list("kitchen") + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/paper/paperslip{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 0 + }, +/turf/open/floor/stone, +/area/station/service/hydroponics) +"ycp" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/corporate_suite) +"ycq" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" + }, +/obj/structure/railing{ + dir = 10; + color = "#683d21" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/station/security/courtroom) +"ycr" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ycu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/library) +"ycv" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics/garden) +"ycD" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/modular_computer/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ycE" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/dark, +/turf/open/floor/iron/dark/smooth_edge, +/area/station/science/breakroom) +"ycG" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"ycQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry Shutters"; + dir = 4 + }, +/turf/open/floor/plating, +/area/station/medical/chemistry) +"ycT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/science/robotics/storage) +"ycU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/department/science) +"ycV" = ( +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted, +/obj/effect/turf_decal/siding/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"ydb" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"ydc" = ( +/obj/item/clothing/mask/party_horn, +/obj/effect/decal/cleanable/blood/old, +/turf/open/misc/asteroid/airless{ + icon_state = "asteroid6" + }, +/area/space/nearstation) +"yde" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/kirbyplants/synthetic/plant28, +/turf/open/floor/mineral/plastitanium/airless, +/area/space/nearstation) +"ydh" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/iron, +/area/station/maintenance/fore/lesser) +"ydj" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/cargo/breakroom) +"ydm" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/gravity_generator) +"ydo" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/gravity_generator) +"ydp" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/port) +"ydq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ydt" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/station/maintenance/starboard/central) +"ydB" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) +"ydK" = ( +/obj/effect/turf_decal/trimline/dark/end{ + dir = 8 + }, +/obj/machinery/blackbox_recorder, +/obj/structure/cable, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) +"ydP" = ( +/obj/machinery/griddle, +/obj/machinery/digital_clock/directional/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/iron/cafeteria, +/area/station/security/prison/mess) +"ydV" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/wood/large, +/area/station/commons/lounge) +"yec" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/commons/fitness/recreation/lasertag) +"yee" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"yeg" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured, +/area/station/science/circuits) +"yei" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/siding/purple/end{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"yel" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/radio{ + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/dark/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/tcommsat/computer) +"yen" = ( +/obj/structure/curtain/cloth{ + color = "#666666" + }, +/obj/structure/broken_flooring/singular/directional/east{ + color = "#73737a" + }, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"yet" = ( +/obj/structure/cable, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/maintenance/starboard/fore) +"yeu" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/station/engineering/atmos) +"yez" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark, +/area/station/science/cytology) +"yeA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/large, +/area/station/security/prison/rec) +"yeB" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/port) +"yeC" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/herringbone, +/area/station/security/checkpoint/escape) +"yeH" = ( +/obj/effect/landmark/start/captain, +/obj/structure/cable, +/obj/structure/chair/comfy{ + color = "#514e58"; + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/station/command/heads_quarters/captain) +"yeO" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"yeU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"yfa" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/service/chapel/office) +"yfe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/iron/white, +/area/station/medical/treatment_center) +"yfi" = ( +/obj/structure/hedge, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/circuit, +/area/station/ai_monitored/turret_protected/ai_upload) +"yfj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"yft" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"yfx" = ( +/obj/structure/sign/poster/random/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/fore/lesser) +"yfE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark/line, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge{ + dir = 1 + }, +/area/station/security/prison) +"yfO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/station/commons/lounge) +"yfU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/engineering/lobby) +"yfV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/emcloset, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/commons/dorms) +"yfZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 4 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"ygb" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/item/clothing/head/cone{ + pixel_x = -6 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/grass, +/area/station/maintenance/port/central) +"ygg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/station/medical/office) +"ygj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/filled/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/chapel/funeral) +"ygk" = ( +/obj/structure/broken_flooring/singular/directional/north{ + color = "#73737a" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/bamboo/left{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris/directional/west, +/obj/structure/marker_beacon/lime, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) +"ygm" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/storage/box/disks{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/storage/box/gloves{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/rack, +/turf/open/floor/iron/dark/textured_large, +/area/station/science/genetics) +"ygo" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/camera/autoname/directional/north{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/station/engineering/supermatter/room) +"ygp" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) +"ygU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured, +/area/station/commons/fitness/recreation) +"ygV" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/command/storage/eva) +"ygY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) +"yhb" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) +"yhe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/station/engineering/atmos) +"yhi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"yhl" = ( +/turf/closed/wall, +/area/station/service/chapel/office) +"yhx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood/large, +/area/station/maintenance/starboard/fore) +"yhy" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage/gas) +"yhB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/floor/iron/stairs/medium{ + color = "#3d3e42" + }, +/area/station/engineering/atmos) +"yhC" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/generic_maintenance_landmark, +/turf/open/floor/catwalk_floor/iron, +/area/station/maintenance/port/aft) +"yhF" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"yhH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/station/maintenance/central) +"yhI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass, +/area/station/hallway/primary/port) +"yhJ" = ( +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) +"yhK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/comfy{ + color = "#514e58" + }, +/turf/open/floor/wood/large, +/area/station/service/library/upper) +"yhV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white/corner, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/iron, +/area/station/hallway/primary/fore) +"yic" = ( +/obj/effect/turf_decal/siding/dark, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/diagonal_edge, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/iron/dark/diagonal, +/area/station/cargo/breakroom) +"yif" = ( +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"yig" = ( +/obj/effect/turf_decal/trimline/purple, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/diagonal, +/area/station/science/xenobiology) +"yin" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark_green/corner, +/obj/effect/turf_decal/trimline/dark_green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_green, +/obj/structure/chair/sofa/bench/solo{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/textured, +/area/station/commons/dorms) +"yiq" = ( +/obj/effect/turf_decal/siding/dark_green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/flora/bush/grassy/style_random, +/turf/open/floor/grass, +/area/station/ai_monitored/aisat/exterior) +"yiu" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/command) +"yiz" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/iron/dark/textured_large, +/area/station/maintenance/starboard/aft) +"yiJ" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Warehouse Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/station/maintenance/fore/greater) +"yiM" = ( +/obj/structure/rack, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/under/misc/vice_officer, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"yiS" = ( +/obj/effect/turf_decal/siding{ + dir = 8 + }, +/obj/effect/turf_decal/siding/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/diagonal_edge, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/white/diagonal, +/area/station/medical/patients_rooms/room_a) +"yiV" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/cargo/storage) +"yja" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/trimline/dark_blue/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/iron/white/smooth_edge{ + dir = 8 + }, +/area/station/medical/surgery/theatre) +"yjc" = ( +/obj/structure/toilet/greyscale{ + pixel_y = 14 + }, +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/dark_blue/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/blue/diagonal_centre, +/turf/open/floor/iron/white/diagonal, +/area/station/service/minibar) +"yjf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/closet/secure_closet/hos, +/obj/item/flashlight/seclite, +/turf/open/floor/iron/dark/textured_large, +/area/station/command/heads_quarters/hos) +"yjh" = ( +/obj/machinery/door/airlock{ + name = "Unit B"; + id_tag = "ToiletB" + }, +/obj/effect/turf_decal/tile/dark/diagonal_edge, +/turf/open/floor/iron/dark/diagonal, +/area/station/commons/toilet/restrooms) +"yjn" = ( +/obj/machinery/door/window/left/directional/north{ + name = "Inner Pipe Access"; + req_access = list("atmospherics") + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/station/engineering/atmos) +"yjp" = ( +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"yjq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"yjt" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/spawner/directional/east, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "medbay" + }, +/turf/open/floor/iron/white, +/area/station/medical/office) +"yjJ" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"yjK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/central) +"yjN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/command) +"yjQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/white/smooth_large, +/area/station/medical/lower) +"yjT" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"yjW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron/dark/small, +/area/station/security/brig) +"yjX" = ( +/obj/machinery/modular_computer/preset/command{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 5 + }, +/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"yjY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/kirbyplants/organic/plant22, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/wood/large, +/area/station/service/kitchen/diner) +"yjZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/newspaper, +/turf/open/floor/iron/white, +/area/station/medical/medbay/central) +"ykc" = ( +/obj/structure/table/wood/poker, +/obj/structure/sign/poster/contraband/shamblers_juice/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/radio/entertainment/speakers/physical{ + pixel_x = 0; + pixel_y = -7 + }, +/obj/item/reagent_containers/cup/glass/bottle/beer{ + pixel_y = 12; + pixel_x = 8 + }, +/turf/open/floor/carpet/red, +/area/station/maintenance/starboard/central) +"ykh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/engineering/atmos) +"ykn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/structure/railing/corner, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"ykp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/boutique) +"ykr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8; + color = "#683d21" + }, +/obj/structure/railing{ + dir = 4; + color = "#683d21" + }, +/turf/open/floor/iron/stairs{ + color = "#5d341f" + }, +/area/station/security/courtroom) +"yks" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"ykt" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron/dark/textured_half{ + dir = 1 + }, +/area/station/cargo/warehouse) +"ykv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) +"ykw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/generic_maintenance_landmark, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) +"ykA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/textured_edge, +/area/station/security/interrogation) +"ykB" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/small, +/area/station/hallway/primary/port) +"ykF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/herringbone, +/area/station/hallway/secondary/exit/departure_lounge) +"ykJ" = ( +/obj/structure/chair, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/station/maintenance/starboard/central) +"ykN" = ( +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/iron/dark, +/area/station/command) +"ykO" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_y = 11; + pixel_x = -3 + }, +/obj/effect/spawner/random/clothing/gloves, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/iron/white, +/area/station/medical/abandoned) +"ykP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/yellow, +/turf/open/space/basic, +/area/space/nearstation) +"ykQ" = ( +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/iron/dark, +/area/station/medical/chemistry) +"ykS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/station/engineering/atmos/project) +"ykW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bed/pod{ + dir = 8 + }, +/obj/structure/sign/poster/random/directional/east, +/obj/item/pillow/random, +/obj/effect/spawner/random/bedsheet, +/obj/effect/landmark/start/hangover, +/turf/open/floor/wood/large, +/area/station/commons/dorms) +"ykX" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/water, +/area/station/maintenance/port/central) +"ylg" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/structure/railing/corner, +/obj/effect/landmark/start/depsec/medical, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark/textured, +/area/station/security/checkpoint/medical) +"yli" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ylj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/large, +/area/station/command/meeting_room) +"ylk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/catwalk_floor/iron_dark, +/area/station/maintenance/starboard/central) +"ylw" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/brig) +"ylC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ylG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/rock/style_3, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) +"ylM" = ( +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=S3-Starboard-Hallway"; + location = "S2-Courtroom" + }, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"ylO" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/all_access, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/machinery/firealarm/directional/south, +/obj/item/storage/fancy/egg_box/fertile, +/turf/open/floor/glass/reinforced, +/area/station/security/prison/mess) +"ylT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/hedge, +/obj/machinery/airalarm/directional/south, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark/small, +/area/station/ai_monitored/turret_protected/ai) +"ylW" = ( +/obj/structure/table/reinforced/rglass, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/taperecorder{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/requests_console/directional/west{ + department = "Research Director's Desk"; + name = "Research Director's Requests Console" + }, +/obj/effect/mapping_helpers/requests_console/information, +/obj/effect/mapping_helpers/requests_console/announcement, +/obj/effect/mapping_helpers/requests_console/assistance, +/turf/open/floor/carpet/purple, +/area/station/command/heads_quarters/rd) +"ylX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/mapping_helpers/airalarm/link{ + chamber_id = "ordnancefreezer" + }, +/turf/open/floor/iron/dark, +/area/station/science/ordnance) +"ylY" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/railing, +/obj/structure/reagent_dispensers/plumbed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) +"ymd" = ( +/obj/structure/table/reinforced/rglass, +/obj/effect/turf_decal/siding/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_blue/line, +/obj/structure/secure_safe/caps_spare, +/turf/open/floor/iron/dark, +/area/station/command/bridge) + +(1,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(2,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(3,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(4,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(5,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(6,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(7,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(8,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(9,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(10,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(11,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(12,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(13,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(14,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(15,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(16,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(17,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(18,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(19,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(20,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(21,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(22,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(23,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(24,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(25,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(26,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(27,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(28,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(29,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(30,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(31,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(32,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(33,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(34,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(35,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(36,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(37,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(38,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(39,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(40,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(41,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(42,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(43,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(44,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(45,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(46,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ajk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(47,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +spU +spU +spU +gqO +gym +gym +gym +gym +gym +gym +cZB +sev +cZB +xgP +cZB +gym +gym +gym +cZB +vfr +cZB +flc +cZB +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(48,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gJT +gqO +thS +ekr +fdi +gqO +gJT +fsQ +gym +gym +gym +fsQ +cZB +pUi +cZB +pUi +cZB +gJT +fsQ +gJT +cZB +pUi +cZB +pUi +cZB +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(49,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +gqO +gqO +fis +bZO +iRI +gqO +gqO +gqO +gym +gym +gym +gJT +cZB +qwg +cZB +vYG +cZB +gym +gJT +gym +cZB +vYG +cZB +ryQ +cZB +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(50,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +gqO +lhA +dUW +odd +mTr +odd +lMe +xiO +gqO +gym +gym +gym +fsQ +cZB +pUi +cZB +pUi +cZB +gJT +fsQ +gJT +cZB +pUi +cZB +pUi +cZB +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(51,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +ezJ +qTl +bmA +sHD +dLQ +fcg +fyM +tGn +gqO +spU +spU +spU +fdz +fdz +vip +fdz +vip +cZB +cZB +fdz +cZB +cZB +vip +fdz +xGh +fdz +fdz +fdz +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(52,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +spU +gqO +nbX +dNW +aZo +dlG +xDm +aJf +kYS +onB +gqO +nbd +gFp +gjU +fdz +aBG +mKk +tsz +wbZ +kDh +wbZ +vbe +wbZ +wbZ +jiO +lXP +kYC +oZj +eBn +fdz +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(53,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +spU +uTo +jQB +bsy +kPB +eru +vEg +uke +vEg +wlk +arO +nbX +fFD +fpt +bXp +fdz +kTD +xGo +vum +uBH +viA +nsO +viA +uBH +vum +aDT +oHS +oXM +lOQ +dxq +fdz +fdz +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(54,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +uQk +vRQ +oaI +tqf +dTR +tuH +ixB +lzI +ixB +lkZ +qFM +nzI +drf +oqq +aEo +oLf +rMz +dLK +uBH +bzA +ghM +qse +aXN +cuZ +hCc +gYq +cZB +dMo +nhj +drU +jDp +fdz +fdz +fdz +fdz +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(55,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +vNN +eGU +dPF +oJn +sNE +omY +cjp +nGn +bFC +lFb +gXy +xkm +kqi +eGU +wlE +nQD +uBH +uBH +elN +qgY +wvm +qpI +qgY +wvm +mIO +luS +uue +dLj +inw +pJj +pHF +cZB +bpt +yee +fdz +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(56,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +bpZ +jjS +deE +fUz +rDi +jWE +wjN +sLD +wjN +cOv +vPt +fvi +lTL +oqq +gOc +oLf +jvd +uMn +ykF +twB +bvt +eKb +waE +aDc +luS +rjh +cZB +xJA +pjd +uBH +drU +gga +qCt +fvI +fdz +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(57,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +spU +ere +ixr +bsy +gDJ +pLA +bnE +lUx +bnE +mXc +suX +jPq +kzn +hYF +bMv +fdz +mxs +tKx +aAp +nWG +viA +vYG +wHn +hJY +tHJ +oLi +pAn +bdp +nWG +ssQ +bKQ +cZB +aqH +tVl +fdz +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(58,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +spU +spU +gqO +nbX +dNW +fcg +lEG +eis +lot +sHD +qwv +rPv +rPv +rPv +rPv +rPv +nqc +tKx +woL +bzA +fPs +rKp +aXN +cuZ +uBH +oLi +cZB +rjD +vyM +jrS +pus +ffS +ffS +ffS +ffS +ffS +fKZ +fKZ +fKZ +ffS +ffS +ffS +ffS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(59,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gqO +ezJ +gaB +edV +kYS +rSp +qcb +lid +fho +rPv +dPz +rob +euQ +rPv +lwc +tKx +vdJ +qgY +wvm +qpI +qgY +wvm +uYI +vFA +vlt +cZB +qSw +cZB +ffS +ffS +tLR +gCl +mHe +wje +cYk +pyO +oaJ +hMS +qtb +wdH +ffS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(60,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +bso +eyd +aHy +ebE +hnq +tBs +iRP +rPv +ltH +hNP +jDJ +rPv +fbb +tKx +woL +oIX +dop +qye +xIq +vfl +hCc +oLi +rHw +kxt +uBH +aGh +ffS +koc +gyM +kIf +kIf +sot +bMT +sKx +oFl +jKS +kJw +dqx +ffS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(61,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +bLu +bLu +sxf +bLu +bLu +bLu +bLu +pXc +bLu +bLu +bLu +rPv +rPv +euB +rPv +rPv +oTL +rAJ +kiz +lOQ +viA +vYG +viA +dTf +vum +oLi +wcx +kxt +uBH +sPh +ffS +wOt +kIf +kIf +rLa +kIf +kZA +uIt +dGT +iBU +lny +btj +ffS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(62,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +szt +eUV +nPL +qPS +mti +doa +fHw +ida +doa +hgW +doa +oBW +eUV +lmS +sgU +sgU +txH +nRE +gdQ +iOw +ykF +qSz +sKJ +iFi +ieT +bZa +uBH +oLi +sgL +kxt +uBH +udR +ffS +oUH +sot +kIf +kIf +kIf +oUL +jUz +tPS +tVY +aWD +vLS +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(63,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +czs +syc +see +fLT +bLu +bLu +bLu +bLu +bLu +bLu +bLu +bLu +bLu +bLu +bLu +bLu +rPv +gcC +erq +lwA +rPv +cga +uQR +elN +qgY +wvm +qpI +qgY +wvm +dgN +oLi +veG +hBF +hCc +uCt +ffS +uwg +skZ +kIf +sot +kIf +coE +uKc +ejm +esm +xZQ +dAH +qPd +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(64,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +oru +aIr +bLu +jME +eRW +utB +oPS +xdV +ejn +bgp +nGS +idR +tDK +nNC +rPv +rPv +kuu +asQ +rPv +juH +fPp +hCc +oIX +ihA +qye +poC +vfl +uBH +cIz +bLJ +uCk +uBH +rBV +ffS +iId +kIf +dVi +kIf +kIf +mUi +xer +vdT +lAK +vLS +vLS +wVa +vLS +vLS +vLS +vLS +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(65,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +czs +wDd +gbz +wiO +swD +bLu +olj +qGi +jDN +rEF +mVI +ejn +xHc +qol +luV +ptp +cAo +rPv +sWM +vmv +xVy +rPv +iaJ +wvN +vum +uBH +viA +nsO +viA +uBH +vum +hCc +uBH +uBH +uBH +kFi +ffS +hWx +kIf +sot +kIf +kIf +xIP +pcx +nuS +mGm +vLS +mQJ +rgI +kGh +obe +nCv +kGh +wdw +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(66,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +onn +aIr +qJS +bLu +bLu +sCs +sli +dBt +boz +utH +ejn +aer +aLk +lfe +hps +vyZ +rPv +vXX +vmv +uEv +rPv +cgQ +fRv +rfe +vDY +nyp +jVU +cnz +qIQ +rfe +lUl +lMQ +xkD +wuQ +cJY +ffS +aOa +pdF +cBm +onm +uqi +cer +peM +peM +xgV +vLS +vLS +vLS +vLS +vLS +vLS +vLS +foA +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(67,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +czs +syc +rDG +vKB +lIY +cuu +bLu +aoj +ljt +lWb +gNK +kmZ +ejn +sMd +ruh +wZI +ljt +sJl +rPv +rPv +bQp +rPv +rPv +fdz +qlN +aFm +qlN +fdz +fdz +fdz +fdz +fdz +bnR +rOG +bnR +fdz +fdz +ffS +ffS +onF +onF +onF +onF +ffS +peM +nWT +cuI +iot +wNE +wXF +oto +fwi +rAK +vLS +iMp +vLS +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(68,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +jcx +bLu +bLu +wko +bLu +bLu +ejn +qIp +ejn +icR +icR +ejn +bzU +bzU +ejn +ezj +ejn +ejn +yfV +ifH +kkR +ejn +wix +oyp +wkA +qaF +vFD +iLA +bZT +uBq +hYL +pzE +omK +seU +kjb +iuw +cUq +mhj +rkT +owS +twX +rkT +vwi +peM +muy +mrr +mrr +bfP +nUx +oay +wIi +aFp +vLS +waT +lnr +wdw +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(69,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nea +gJT +xzb +ejn +ejn +ejn +bLu +bLu +bLu +xlZ +xEf +ejn +kzb +eZl +tmT +lXW +rbB +lkm +jaK +lkm +mlK +lGd +tmT +fVa +rOb +why +dBb +vPg +ods +otw +agk +nlq +saR +kpY +dFw +hGi +qCP +ozE +caY +ciU +hgI +nQG +gFs +cUq +jUU +qyy +qyy +qyy +qyy +rai +qUv +lkM +mrr +gjX +hjo +wXF +eky +tvV +kTi +vLS +dzs +ndp +wVa +sZT +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(70,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +lzM +ejn +fvJ +ccq +tCP +uzt +iLD +ccq +duF +ccq +hEZ +ccq +xhn +ccq +ajE +ccq +duF +ccq +hZV +ccq +pig +vRX +lyz +lUA +odZ +pLp +xGV +bcv +yeC +sKr +lQQ +qqS +rCZ +eaw +wVR +sfs +cHu +dgQ +qHz +oOT +oOT +uGy +lVJ +kNV +peM +mCc +gjX +mrr +bWd +sao +sao +sao +sao +vLS +vLS +vLS +iMp +fYO +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(71,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +jOS +gym +gym +gym +lpr +fDk +jBT +tAS +dmV +pig +dka +ejn +hol +cIP +nbh +toJ +xbf +hRC +nbh +bAo +qDG +jpW +nbh +eHQ +ecW +cIB +ccq +hmc +ods +iMP +hLb +pfg +pfg +cqz +hqT +hGi +aYe +qUX +cao +rWW +ryU +pxZ +obv +cUq +txu +oVK +uVr +jtR +bPE +cGv +peM +qWB +nXE +xQs +tly +sao +usi +pZQ +gSp +gfA +fsA +vLS +rgI +gmV +xFY +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(72,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +nTm +cvP +xyb +hZV +nWw +ejn +ejn +ejn +mIa +ejn +ejn +ejn +jbf +ejn +ejn +ejn +oWc +ejn +ejn +hOP +ccq +khK +ejn +mDv +hHU +ddR +ocd +pvi +ntO +bZT +vru +nuz +lNs +fUL +kCl +oQE +pMS +cUq +oBb +scI +ikz +kbm +eEZ +nbA +sao +sao +sao +sao +sao +sao +dnh +gQa +qKb +wvJ +hUq +vLS +vLS +oQL +suA +wsu +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(73,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nea +gJT +xzb +ejn +ejn +ejn +ejn +ejn +rlA +vNl +ejw +qik +ejn +dtA +dSA +nJy +ejn +dtA +dSA +lAB +ejn +dtA +dSA +mhc +ejn +chn +ptU +fem +ejn +uPS +iWM +kwY +ldl +amo +rRe +bZT +fdz +oLf +oGA +kXE +kXE +oLf +fdz +cUq +tUK +vjR +cZl +jxZ +fuK +hqh +sao +ebS +mOm +ohh +sao +pVf +kjm +rgF +jeh +aSJ +waN +kjm +vLS +thE +gvS +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(74,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +lzM +ejn +cPz +ccq +uKZ +kyy +ejn +rMn +aZd +fsS +ejn +dAT +lpE +wJN +ejn +dAT +pHC +vbp +ejn +sGe +ccq +khK +raj +hGi +jsz +ddR +lRc +ofI +bZT +bZT +uCl +vtm +uzq +qCX +mUy +qLb +mbA +cUq +cUq +rew +lbw +kpE +iCo +npZ +sao +gVR +bMP +eZv +orn +rfr +rOc +iQr +oXi +wlU +qfd +rfr +aHK +pEU +enE +vLS +gJT +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(75,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +jOS +gym +gym +gym +lpr +hHN +jBT +oyQ +dmV +qpw +uKZ +edw +ejn +jeU +lft +mCD +ejn +rpn +hZg +wjd +ejn +xMv +gnM +ipK +ejn +xcF +qpw +khK +heJ +xmL +fzw +ddR +rLw +oQc +bZT +afN +twL +otV +muj +muj +gOa +otV +tGe +fJU +cUq +cDM +etF +sBw +vfF +tlX +sao +kqz +tTM +eDp +sao +kjm +waN +kjm +pXS +kjm +kjm +kjm +vLS +pYq +gvS +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(76,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +nTm +cvP +tjX +ccq +uKZ +rCc +ejn +pTB +ykW +unH +ejn +pfe +pgk +unH +ejn +pTB +ykW +unH +ejn +aIG +ccq +khK +kcY +hGi +aIO +xKx +ldl +neP +bZT +bxc +eRi +cki +oGY +ljE +oGY +hbk +muj +vbT +cUq +bfc +cbN +gkj +nNE +pFZ +sao +sao +pnQ +sao +sao +sao +bYJ +rpv +xyR +rpv +bYJ +sao +vLS +nLA +vPZ +wsu +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(77,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nea +gJT +xzb +ejn +ejn +ejn +ejn +ejn +hRr +jGi +uKZ +bfe +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +ejn +oPJ +mhs +khK +ejn +ejn +hGi +mST +hGi +bZT +bZT +crT +fNC +eMP +ejn +ejn +ejn +eEx +gOa +tcM +cUq +hqa +cUq +qBU +cUq +hqa +sao +lLY +qGD +lGB +xDc +wUy +rfr +kjm +pXS +kjm +rfr +pQS +vLS +vLS +eci +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(78,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +lzM +ejn +pYw +ccq +rqh +ejn +ejn +nJq +gej +dVh +iCa +tlD +ejn +uLf +tvM +qow +bDJ +uLf +ejn +dQw +ccq +gBV +ejn +nIA +alF +czk +koj +bod +ejn +jFt +dCA +nda +oQq +scV +wxR +blD +otV +hGQ +ejn +nIA +alF +hsn +koj +iaR +sao +oMY +lFh +sLK +xDc +dsh +vXn +lKM +iLx +bGw +pNS +bcV +vLS +oyk +eMN +vLS +vLS +rWS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(79,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +jOS +gym +gym +gym +lpr +xMR +jBT +hLh +dmV +pig +eIu +ejn +mVK +bJK +jIm +vqT +kRj +bJK +bFl +bJK +jIm +wdu +jjw +bJK +tIt +sCJ +ccq +hdN +pfp +oWL +xCe +jId +pLi +koj +jjT +mLv +eRi +kzD +mJq +rAw +baS +hWi +muj +hKL +tfh +eFf +mRU +uIA +bwq +fre +toF +dRW +cDQ +bJX +xDc +mlA +dBc +tuZ +lrM +tuZ +grN +xnv +vLS +cYH +ipE +vNR +vLS +wsu +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(80,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ejn +nTm +cvP +ixm +ccq +bHW +cua +eoU +mKm +mKm +uDk +mKm +wYQ +hSX +mKm +mKm +eBJ +eEP +wYQ +mKm +mZW +vSy +iZf +tXh +oTk +yin +eLN +rrs +xiv +jjT +bdM +oXS +taO +wAq +sLs +orD +hfX +ser +jYY +jjT +gAs +hmu +qrd +ejS +ePU +dfL +xNW +sVB +lhc +xDc +cgs +vlq +mWn +eSU +sYZ +fjO +bKz +ngX +kxk +gFr +ieN +bnU +gTG +kXL +bvO +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(81,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nea +gJT +xzb +ejn +ejn +ejn +ejn +ejn +ejn +kEI +fvc +ejn +tyO +nCR +tyO +bdr +cgi +pzn +oKL +fER +izb +snt +sNi +uiL +sNi +sNi +sNi +sNi +mwW +vBW +kUm +akp +cih +spa +qRb +tug +eRi +olJ +skm +gcr +xfD +iHA +gOa +llj +lNm +wcD +kJW +nfY +tza +gFY +iHw +uux +sdf +qkU +xDc +pvh +aWF +qxh +jAP +qxh +wmF +noQ +vLS +bOS +ita +bWj +vLS +wsu +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(82,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +bLu +ebQ +bLu +ndG +ndG +ndG +aup +ndG +vEB +ndG +ndG +ndG +ndG +ugd +mOZ +mOZ +nAk +ejn +mDA +kqV +pnN +hzA +cTF +ejn +fsL +dCA +uvO +glb +gLk +oSH +oTx +otV +vnj +ejn +kGg +jEl +tFI +gFY +xKB +sao +vYl +obB +eok +xDc +rZi +qhg +akV +hSt +mOe +koT +oGh +vLS +kbs +xca +vLS +vLS +rWS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(83,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +rXx +vUz +cZL +bLu +rWX +hxC +xsx +vZy +dzU +htR +hdB +dXM +fDK +ndG +dYN +yaH +ujD +afe +ejn +ltW +jOv +wtR +oZB +ltW +ltW +cCA +eRi +tda +ejn +ejn +ejn +vKu +gOa +oCL +bKj +bKj +diH +kAY +kAY +bKj +sao +cnV +qGD +kuq +xDc +qVd +oRX +cLJ +uqa +crB +oRX +ifI +vLS +vLS +eci +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(84,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bVp +aYu +bLu +ndG +ndG +aai +bHT +cax +cAd +hLM +ndG +ndG +ndG +giF +giF +hRy +vJm +ejn +iVA +mah +elL +ovq +nQj +ltW +wHC +fNC +cki +uVs +lri +uVs +hbk +muj +hnc +bKj +hhl +lJB +cly +dSt +hfs +sao +sao +xeB +sao +sao +sao +tQB +gGB +gPz +gGB +tQB +sao +vLS +nLA +suA +wsu +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(85,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bLu +bLu +bLu +bLu +wIF +frK +qbL +pel +eKC +agQ +uNP +yjh +oxo +ndG +prx +prx +prx +prx +ltW +fmQ +mah +qIe +ovq +cwv +ltW +aKK +xbl +eCa +pmO +pmO +pmO +eCa +iyr +wzc +bKj +gpu +dQQ +ovy +htu +awp +sao +cla +yec +oOt +sao +cLJ +cLJ +cLJ +uqa +cLJ +cLJ +cLJ +vLS +pYq +gvS +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(86,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +ndG +ndG +gNF +buh +luu +gfl +bbf +ndG +ndG +ndG +uUt +ekb +hyj +prx +ltW +lYy +mah +qOL +ovq +hIc +ltW +ltW +crS +mkQ +dby +wWL +gKM +dis +pEW +bKj +bKj +qNc +aWz +wXZ +yfZ +dUR +sao +uIJ +nIG +tDW +nUP +oRX +rZW +eYW +dqy +nQO +eza +oRX +aHK +pEU +enE +vLS +gJT +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(87,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +rOu +hhK +bjx +jfw +mKG +jlV +pWd +ndG +bDk +vFV +trR +tBk +gsJ +kwW +vat +mzp +pSP +oJY +hxx +oeI +tEL +tEL +jaY +tMj +ojs +oSy +jaY +tEL +tEL +uhR +vuE +qvL +giJ +bBx +mAF +sao +eso +wht +qhx +sao +pUp +cLJ +tiq +gex +mud +cLJ +cLJ +vLS +thE +gvS +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(88,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +ndG +fZK +mYq +pQu +ojD +meA +htf +pfH +ndG +hPq +ggb +lPq +vrU +lXR +qpf +qpf +kjd +oLE +xIb +ovq +xru +tEL +ivq +qRt +bEI +nbY +dFb +gkk +uEM +tEL +uHp +vuE +vbc +kDY +kBv +piN +sao +sao +sao +sao +sao +sao +bsE +nJJ +kPY +mMD +dKb +vLS +vLS +oQL +vPZ +wsu +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(89,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +nEd +vqY +eKC +ayH +fle +aNV +lUM +ndG +uHw +ggb +dyt +jCD +ioh +eSd +crx +qTY +wvD +sAp +nqy +jXL +tEL +eJT +vHX +wes +lJg +lMO +xzq +eRq +tEL +wTE +gHb +kEt +ogW +kBv +ubQ +sfW +pnL +lmF +tmt +vJG +sao +dGi +sFC +ttI +mNx +jWT +vLS +ssM +lnr +gzp +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(90,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +pae +ndG +ndG +xlf +ndG +ajC +ajC +ajC +vEJ +paq +cQJ +pDY +gsJ +mQY +eOo +xyh +pZk +xyh +oMO +snZ +tEL +voG +juk +pGf +iWm +cJp +gZA +vRx +tEL +sxz +vuE +hMH +iYC +gkl +uUX +uUX +scL +ihz +htu +lXs +sao +sao +sao +vLS +vLS +vLS +vLS +faX +igN +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(91,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +cqH +ndG +gnT +kwT +vmB +ajC +kEA +ajC +ajC +uUr +nKG +cAL +prx +ltW +alS +edz +dwk +aDj +oZN +ltW +tEL +kcW +nup +piC +xvH +glF +tvL +iOl +tEL +wEp +bxw +gsE +vxL +giW +oEn +feS +fRD +bki +yfZ +dLe +jfX +plD +sEZ +kqw +eDr +xAI +xBB +cFe +mCr +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(92,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ndG +sZL +ndG +nWl +shQ +qTo +ajC +frS +qJR +ajC +ajC +hip +ajC +ajC +wbY +pkf +lSU +cfg +sJu +dBp +iHh +tEL +jLJ +qRt +rSt +hmB +oFB +qRt +qeM +tEL +hRk +iFt +hvn +xvj +wAo +qDa +qon +hHa +xvj +gIn +xpq +gLz +xof +fjk +vLS +aGB +wVa +fDZ +vLS +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(93,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cJz +mAr +wlI +rFt +cJz +gym +gym +gym +gym +gym +gym +gym +ndG +ndG +ndG +pOC +nyt +pps +ajC +hgm +xuw +kLh +xgs +cYB +rFy +ajC +mkg +vYE +tYx +biQ +eng +weX +vvv +tEL +tEL +tEL +rvZ +oSy +oSy +tEL +tEL +tEL +nmK +xMt +sUW +sdN +wxH +hdX +nKJ +oKJ +vnP +bIX +eYc +rnz +puX +uUi +vLS +vLS +sMf +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(94,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +njb +lxT +lxT +lxT +njb +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +ndG +ndG +ajC +ajC +ajC +oDb +bYZ +azk +fmO +wxN +kDg +ajC +ajC +hhW +krt +krt +krt +hhW +hhW +hhW +rFK +nAv +uXR +uYw +wdk +eqm +hQo +hhW +bKj +bKj +vXL +vXL +jdl +vXL +vXL +jdl +vXL +vXL +bKj +vLS +vLS +vLS +vLS +rJf +cQu +baf +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(95,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +vkP +vYb +ksW +rFt +cJz +njb +lxT +njb +kZe +cTM +ciR +njb +lxT +njb +cJz +onc +rkx +hZS +cJz +gym +gym +gym +gJT +ajC +ixb +wKV +ktF +ajC +ajC +ajC +ajC +qLS +dYy +fiD +rlr +nLU +lee +nLU +ppw +oXu +gLK +czb +mYr +hVw +rfo +cPL +pFy +gHm +iaC +bKj +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +bnk +upa +pDV +uzb +xrh +kRg +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(96,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +kzQ +lxT +lxT +lxT +njb +njb +qZY +vsz +knG +vRe +cAc +cYE +hZb +njb +njb +lxT +lxT +lxT +njb +gJT +gym +gym +lfy +sUj +lmE +vsC +ajC +ajC +ucb +cDS +ajC +ajC +ajC +ajC +mYs +mNS +ckV +rPE +suD +vGw +hwZ +eYl +sKi +lsz +rfo +qfU +oMn +ccT +aWr +bKj +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +rgp +pNE +vLS +sAV +jLR +wZi +wsu +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(97,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +oCi +wEb +eTJ +wmq +njb +pZh +rnA +vgN +vir +nTX +iDk +txw +bVs +nLD +njb +rcG +mHL +qiG +njb +gJT +gym +gym +gJT +ajC +fXn +vsC +ajC +uJt +meI +vre +ewN +nNe +adV +feF +jTp +lWa +jsM +nBH +moU +hhW +hhW +lBt +faC +uRN +kji +dBm +lwt +jAb +hhW +bKj +mQu +dfZ +pkj +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +ihn +vLS +mZN +gPc +vLS +ozQ +nKe +vLS +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(98,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +njb +njb +iGn +jrb +vJu +njb +epF +epF +epF +njb +jVx +njb +epF +epF +epF +njb +ggH +lIu +jjC +njb +njb +gym +gym +ajC +ajC +ajC +tyk +ajC +eyj +awe +vre +eTp +nNe +maY +jsa +mNS +xsg +kYH +prU +pFy +rfo +dzh +gXs +aoq +wHS +rfo +gCc +ijY +jjv +kMo +vXL +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +sqH +oZK +vLS +woh +xwm +vLS +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(99,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +njb +eqd +dZV +oCB +fkS +njb +muq +ltX +aTT +yeO +xVD +aFB +ltX +aTT +hEu +njb +rAc +iDS +tcy +vyp +njb +gym +ieI +ajC +xNp +ajC +afU +ajC +nhG +oVn +jYo +esO +cvj +abf +hwB +xPK +pLf +fKM +iuv +gfr +lXL +aTG +upu +jBm +jxV +mwm +tZj +aKB +oiS +crz +vXL +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +hcU +vLS +vLS +ePc +rHb +vLS +gym +gJT +xqy +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(100,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gkr +bDP +flg +njb +cxO +lIu +woH +qCA +qKh +mJY +lIu +aZY +lIu +hkE +lIu +fJO +lIu +lKG +iPX +utg +uPe +lIu +ljl +njb +gym +egQ +fQq +tmh +tYN +aMS +ajC +cqB +sRJ +vre +gdR +nNe +fhn +ndK +lOM +tna +pnE +fpb +ycu +rfo +lVd +kYW +xeE +wHS +rfo +oux +eQo +bYs +kMo +vXL +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +fiS +vLS +inY +xvJ +pXK +vLS +xkw +xkw +sHB +xkw +xkw +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(101,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rGm +rGm +qUF +qUF +qUF +rGm +rGm +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +siR +stT +stT +siR +qHy +oMF +bcu +teW +njb +oLx +akg +bcJ +fax +gMf +iGd +qHa +mRg +njP +njb +bnt +bcu +xuz +qtG +njb +gym +sXq +ajC +xcQ +ajC +qrH +ajC +mAy +pJM +vre +rKQ +nNe +rEX +wNZ +hez +lWa +oiQ +jdM +moU +hhW +hhW +wbI +faC +tKX +wHL +pZP +oMn +fqz +hhW +bKj +uGc +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +pkj +dfZ +sps +vLS +hYH +cRw +fLs +wPe +uWZ +nkw +xkw +gQv +kme +jnm +xkw +xkw +tAr +tAr +xkw +xkw +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(102,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rGm +rGm +phN +fbB +xHL +vvF +klY +rGm +rGm +cSL +gym +gym +gym +gZV +gym +gym +gym +gkr +siR +siR +siR +pgi +mdJ +siR +siR +hwz +lIu +jLW +njb +fTR +lFA +njb +njb +iue +njb +njb +unq +fTR +njb +oct +lIu +mID +njb +njb +jJr +gym +ajC +ajC +ajC +iOg +ajC +ajC +slM +vwE +ajC +ajC +ajC +ajC +lea +xyg +qwb +tKO +uNr +vbG +pAh +hrD +sKi +cYK +rfo +bFX +lwt +naR +gQt +bKj +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +vLS +pqC +vLS +cAk +fjI +bIg +ccF +xkw +xkw +xRh +xkw +xkw +gBD +teY +iXj +xpE +xkw +gJT +gJT +sBu +guD +sBu +guD +sBu +guD +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(103,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +los +dbh +los +los +hkX +eGd +jmM +fmF +fkl +sIr +kAP +qUF +pni +gJT +gJT +gJT +gJT +gJT +gJT +gJT +dMw +stT +xEk +fAB +jYb +ppF +kdn +siR +evT +cpb +nvd +njb +cnH +fTt +njb +xpC +gwJ +cCq +njb +dJI +wGy +njb +gIg +oLq +vPF +njb +wTT +kDb +vCY +gJT +ajC +sBQ +rsN +cka +ajC +ajC +ajC +ajC +seB +seB +dma +sto +ajQ +eEe +ajQ +tYq +eKy +rra +khr +mZB +mVa +rfo +oiT +xDY +lge +kpW +bKj +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +dfZ +ajC +wIN +uLL +vQT +hZk +vQT +vQT +gZz +oYP +uAu +bgZ +tAr +wIA +vPm +wMG +ocp +tAr +sQr +jng +kbF +tQb +kbF +tQb +kbF +gQn +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(104,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +xWe +wwQ +tua +los +cyo +rrz +ldH +ovB +ikI +mRM +aSR +qUF +aFA +fDY +gym +gJT +gym +gJT +gym +gkr +cko +stT +ktC +igW +mZm +nVO +tBK +siR +siR +njb +njb +njb +jKc +hsp +njb +aUS +rzW +sXG +njb +tVT +ite +njb +njb +njb +njb +njb +lLB +nMh +uVC +lfy +sUj +jTc +nWy +prn +hVM +trq +jJX +bHP +seB +ajC +ajC +ajC +nQI +nQI +nQI +ajC +ajC +ajC +noW +oBJ +nMF +vXR +tMc +aAU +amE +hhW +bKj +bKj +bKj +vXL +jdl +vXL +vXL +jdl +vXL +ajC +ajC +ajC +cKo +uLL +rlW +iJL +ckZ +vQT +ogR +lZW +lbN +bXG +yad +cvY +qNs +kfv +cxs +tAr +cUT +opY +gcQ +nJb +gcQ +nJb +gcQ +guD +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(105,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +xcy +eEu +tqo +los +kDy +huL +vWN +kVl +uYj +uSy +ngR +qUF +ocH +gJT +gJT +gJT +gJT +gJT +gJT +gJT +oZy +stT +krG +dAl +hHl +deI +dEc +qMo +siR +qRY +oIU +njb +xQv +wvV +njb +bgm +gBR +eRn +njb +lsn +boE +njb +qRY +oIU +lam +jdd +igQ +kIL +kDb +hpp +ajC +mWY +bfm +gtW +gLB +xkz +giQ +pDG +rod +ajC +qVo +qOR +sOT +jtd +rZu +mHG +qOR +ajC +hhW +hhW +hhW +kVi +hhW +hhW +hhW +ajC +bvr +eZP +ajC +ort +pmv +lAL +kBw +pmv +rba +ajC +sls +cLX +oYY +uLL +cIC +gho +nCy +mDr +uOy +iTJ +fbl +kLF +tAr +hhq +nds +wMG +kVY +tAr +sQr +jng +kbF +tQb +kbF +tQb +kbF +gQn +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(106,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +los +cTr +bNU +uPG +los +los +los +rGm +fpk +rGm +rGm +rGm +rGm +cSL +gym +gym +gym +ijt +gym +gym +gym +gkr +siR +siR +siR +azK +qXg +knw +kLj +siR +iYe +vsi +njb +njb +njb +njb +njb +kov +njb +njb +njb +njb +njb +iYe +vsi +lam +gua +gua +ycQ +gua +gua +uLL +uLL +uLL +bSX +uLL +uLL +uLL +dYy +qIF +ajC +idj +aLS +nIW +oWE +nLV +tMm +jtd +ajC +quU +cHW +dae +qww +xRB +hqY +nOY +ajC +rkM +pSV +kgU +lBY +ozJ +gYt +fFK +ygU +pBM +ajC +ajC +bZC +fiW +uLL +jGh +wlu +ujE +aIL +akr +fbl +ayQ +jQf +xkw +wGr +cHI +izv +xpE +xkw +lvD +gJT +lvD +cyK +iJp +cyK +iJp +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(107,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +hEW +vYC +eVb +wtF +mgW +oOr +eaA +kHD +wSm +dVG +cGO +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +siR +siR +siR +pBB +bpb +qNC +hmZ +qFE +pYl +lGp +qgf +dYi +bfR +rCP +tiM +dYi +qgf +aJK +gcH +mLz +nGH +iwU +iwR +uBK +neN +qNA +neN +hkH +fnM +hKD +xKD +eWG +ykQ +uLL +ayj +ovl +ajC +ajC +wyx +nxN +hmT +vUB +rkl +ajC +ajC +khh +iuR +cpC +vKl +uuA +sdr +sfS +ajC +mLj +cmP +ajC +ajC +nXo +jqT +eaN +sGx +ajC +ajC +rYz +iAY +mwH +uLL +vRA +gho +gXM +mDr +cuJ +iTJ +kfv +qfb +ukX +tOw +uxe +tOw +ukX +ukX +fwe +tOw +fwe +ukX +ukX +ukX +ukX +gym +ykP +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(108,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +wTV +uPo +vYC +iZQ +sfk +fDV +hiw +hAv +lgQ +oxL +cGO +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +siR +siR +siR +siR +anV +cZe +ayi +fRu +qzE +ayi +gUt +npX +fQF +aUC +jFs +fQF +aUC +yjQ +szH +tAO +hWE +vwB +rTt +rTt +agD +rTt +rTt +rTt +rTt +vqz +idE +uLL +dYy +ujx +dYy +ucW +qDY +myr +ykX +vmX +hmT +owE +ajC +lJf +uaH +oRi +atJ +bYs +bNj +qch +ajC +rAm +vqZ +ixb +ajC +ajC +ajC +ajC +ajC +ajC +fuQ +dOK +kYa +oLB +uLL +ecQ +hOf +rxi +vQT +hDW +eZB +kfv +ukX +ukX +ebX +awl +tAU +eOi +bYO +fbM +mdb +aQY +vgX +mdb +lfG +ukX +ukX +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +nck +lkc +nck +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(109,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +los +los +jbO +uwJ +fIU +eLM +oOr +aua +hwD +kkW +vnJ +cGO +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gkr +gJT +eof +lcq +aeq +gIv +leM +nVH +fEm +uUS +qph +pwY +kBT +xfm +kYI +fzg +dZu +esG +qPU +iYP +nGH +iwU +fSR +rTt +rTt +rTt +mVP +agD +rTt +rTt +rTt +rTt +aMX +uLL +uLL +otN +dYy +mzc +fUv +myG +uew +veR +ygb +aqi +ajC +ajC +ajC +neh +tPc +bvN +ajC +ajC +ajC +kqb +xei +mLe +ajC +nfw +mqN +onX +rHq +xRE +yjK +nqb +xId +uLL +uLL +rdK +reJ +rdK +rdK +wiH +far +mxV +ukX +ppr +oJp +lWv +wLF +ddr +ddr +rTD +ddr +wGj +ddr +ddr +bpJ +imb +ukX +ukX +ukX +ukX +ukX +ukX +gym +gym +gym +gym +gym +gym +nck +rRr +nck +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(110,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +los +los +los +los +los +los +bPw +ckL +bPw +bPw +bPw +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +fGC +fGC +fGC +eof +ilC +kEs +lnD +pAa +cLY +urx +wdQ +wdQ +wdQ +eFn +wdQ +eCm +wdQ +wdQ +wdQ +fUj +kYI +jPw +iwU +fSR +rTt +lkE +rTt +lzr +lqr +bcf +xlk +uBd +rTt +mqV +qHo +uLL +xPN +tub +ajC +rYC +brK +ttF +pND +tGX +mzc +xQM +fiU +ajC +ajC +ggG +ajC +ajC +fnS +mfk +dYy +vFn +brl +ajC +jqJ +kEY +vgL +fsw +jqW +bqW +ajC +uuS +uLL +rJr +ngk +vNv +fVj +dNf +usu +jkx +kfv +tOw +crD +lcj +sUh +btt +wys +lXK +fSm +sdi +tOn +vpy +auH +gNj +fEn +tOw +gcR +iCB +ljh +kkV +ukX +ukX +gym +gym +nck +nck +aHT +nck +jjz +nck +aHT +nck +nck +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(111,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +bPw +bPw +aBP +xLt +mIJ +gkQ +bPw +gJY +lhu +pKt +cGO +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gkr +fGC +fGC +jWh +oYA +eof +vGS +nEH +eof +eof +eof +eof +wdQ +tec +sFs +vyX +dZb +lCq +viD +hNv +wdQ +lam +pkL +cgJ +lam +mIP +nFj +rRE +rTt +rTt +bqI +vka +dsZ +bSs +uBd +vvj +pDs +uLL +vOn +dYy +ajC +ajC +dSC +fyC +xZJ +mzc +mzc +acU +dYy +ozZ +mzc +hYq +giQ +nza +mDe +hnV +pLn +jTn +kQK +pzL +rrY +tBY +jQA +uLL +uLL +uLL +uLL +uLL +uLL +xHw +vHv +bBI +eGi +dNf +rBi +jkx +kfv +tOw +dlK +wqS +bCK +uey +ulv +kAw +lVf +jWj +lVf +kAw +lxu +gQk +bnb +hnX +xLJ +fFM +cfN +gmi +kDf +ukX +gJT +nck +nck +rCH +qex +lkN +lkN +lkN +leO +btr +nck +nck +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(112,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +cGO +eqT +hhP +phR +dRl +bPw +bPw +cYe +yaR +bXZ +bPw +csI +csI +jHj +jHj +gym +gym +gym +gym +gym +gym +vYb +fGC +bWc +mxY +xrw +ubM +djm +vCR +cMg +kVg +uyr +eof +wwN +wNF +loe +fTL +lFZ +ucL +nBv +npC +gCB +gua +gxJ +rGN +rbL +fSR +pEZ +cKv +dNI +dNI +rTt +dsZ +dsZ +dsZ +cKv +vug +bMc +uLL +poR +dYy +diX +ajC +ajC +dYy +wmQ +cGj +mOw +ddq +pSX +iLb +qbQ +aCm +ajC +ajC +ajC +ajC +ajC +ajC +sOv +mhX +fUt +uLL +nwF +uLL +qDk +djI +tpZ +fYj +rdK +pMp +oWk +atz +fVj +dNf +hUM +jkx +kfv +tOw +cph +lcj +wYS +hgl +qsg +bdQ +rPe +jhk +eFE +bdQ +sEh +gpv +fEn +tOw +ogf +ijT +azw +nZh +oUR +ukX +ykP +nck +eTE +qex +enb +wph +wph +wph +ddL +leO +okR +nck +ykP +gJT +gJT +gJT +ykP +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(113,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +gJT +cGO +eqT +jHx +oJw +jsF +bPw +jJm +bps +cqy +ufn +nnW +csI +dck +uFD +jHj +jHj +gym +gym +gym +gym +gym +qaB +fGC +pTg +ivD +jNZ +nrX +kLw +gKG +cTs +iwA +vgU +fGC +eTv +eih +mhy +vLE +rEl +rEc +nae +kHL +xFa +gua +sNI +gni +iFC +fSR +rTt +cEh +xlk +xlk +rTt +dsZ +dsZ +dsZ +cKv +xMQ +bum +uLL +sPx +dOK +htk +eYX +ajC +bdb +ajC +ajC +jxD +qOK +ajC +ajC +ruF +dqO +osQ +wrd +ajC +fPv +rAY +ajC +yiM +iAY +uLL +uLL +wFj +cKQ +uki +nlm +ifM +ydo +rdK +rdK +llM +cIW +rdK +rdK +ufT +iMt +biK +ukX +lxu +lcj +enK +jCi +bdQ +iHt +rAE +mFh +rAE +bdQ +qEg +vAT +fEn +ukX +hCs +nTF +gYa +gwz +tVd +tOw +gJT +cdm +kES +enb +bvI +igL +sIc +igL +awC +qLi +qzL +bOX +gxP +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(114,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cGO +bPw +cGO +cGO +lnZ +wSA +dAy +sXu +bPw +kOx +rnC +oXF +mNK +byk +csI +rXP +egM +iqM +jHj +fDY +gym +gym +gym +gym +ewj +fGC +wlB +iMc +iUv +lnJ +tOB +pFx +rIE +iol +llK +fGC +aIl +rRT +xmZ +aGQ +cyc +lkk +cug +rRT +cFw +gua +vaq +tLo +nfm +dfi +aIe +hqd +rTt +rTt +pcB +anR +dsZ +dDn +bfb +xWR +bgl +uLL +bDN +mzc +jEj +dcp +ajC +fMw +ajC +rWM +wQm +lQR +diR +ajC +hFa +tHK +djp +bvF +wkW +viX +oXV +ajC +bvr +iAY +uLL +wRi +ydm +lKA +hBh +fOd +jCb +ydo +rpD +oHo +gfM +pCF +rMk +dNf +qHe +aeH +bgZ +tOw +cQB +lcj +tTQ +iHt +rxz +pfk +cxS +cLu +rtW +hrB +bWZ +eHc +tRi +hGa +rBR +xEG +ddr +boi +uoQ +tOw +gJT +cdm +nDk +efX +igL +rQy +nFB +fnk +igL +qWu +opE +jrE +gxP +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(115,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cGO +dbT +lPG +bPw +jNh +lGU +lGU +fCP +ueT +tqs +eYS +kEU +bqO +dOM +mKS +cyg +dVD +rFg +csI +gJT +gym +gym +gym +gym +gkr +fGC +fGC +esn +ppt +eof +lni +bwj +xUm +bEN +vho +uLH +hRi +rRT +xRq +lkk +vnc +spK +oft +qAe +etX +khI +rFX +rzE +cEc +qOa +rTt +rTt +rTt +lzr +rNl +dfs +dNI +fWa +rTt +lye +vUu +uLL +nVh +lLN +qfW +qyU +sjI +lRE +qRC +dnK +voZ +ljk +qOD +ajC +mLj +exP +ajC +ajC +ajC +ajC +qOK +ajC +ajC +puD +uLL +wxh +oum +hXh +iXu +tgF +pgS +tRc +dRq +lTZ +rZf +klq +qap +sgS +iTP +prP +uoF +waK +aAr +fXN +wVg +mxI +mHv +kig +qpa +xkj +pVJ +ffx +ygo +iua +bVi +tOw +rTK +ouq +ddr +xex +snV +ukX +ykP +nck +mBl +iNR +fOW +reA +mQp +nIf +qQV +vWp +xoJ +nck +ykP +gJT +gJT +gJT +gJT +gJT +ykP +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(116,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fgx +rrv +jgz +jqa +nDj +kiC +ptk +lCa +xLd +ail +twl +dnX +lpK +fHW +wKM +csI +gtA +gVj +aOe +csI +plc +gym +gym +gym +gym +gym +gJT +fGC +fGC +fGC +eof +uUc +dTi +cRF +pJE +vlr +eof +sZK +rRT +sMa +nNN +aGQ +rEl +pqJ +rRT +wOM +gua +sgn +kMM +thM +gdV +rTt +rTt +rTt +rcn +iwd +rTt +rTt +rTt +rTt +sCH +uLL +uLL +diI +foG +ssh +fKR +dOK +dZj +pyM +qqh +qFv +ljk +wZA +ajC +jOF +exP +xgj +ejI +aCm +suM +mVG +ajC +muP +kYa +uLL +fSn +ydm +sOE +dLb +tcF +kOX +ydo +sSi +vAu +bHp +cmm +cwz +dNf +cuJ +eZB +kLF +tOw +jAZ +lcj +cOW +kur +wyA +hzX +bCW +rtn +kqL +cfF +rmP +xUP +wxQ +hGa +pfr +xEG +ddr +uav +uoQ +tOw +gJT +cdm +cUC +mJA +igL +fnk +wWX +rQy +igL +qdy +dCE +bdu +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(117,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cGO +uUT +mAH +bPw +cKa +kKb +pCq +dhW +hpG +lYT +isu +fXQ +guM +wpH +aNj +fbL +lEP +fNG +csI +gJT +gym +gym +gym +gym +gym +gym +gJT +gkr +gJT +eof +eof +eof +cKJ +eof +eof +eof +ext +hVf +nSg +bDi +spK +azm +ncj +hVf +vab +gua +xRf +kSw +plp +fSR +ntM +qIn +qun +nIk +rTt +rTt +rTt +rTt +mvt +jJp +uLL +lxm +oqm +qbQ +ajC +ajC +qOK +qOK +ajC +ajC +qlO +sSD +fVR +ajC +jiy +jLi +dgu +ssh +ajC +exP +lXF +ajC +tLE +tus +uLL +uLL +dRs +lqH +qdF +bZu +pJz +ydo +rdK +rdK +kfz +oqF +rdK +rdK +fvH +far +qZM +ukX +pZH +lcj +ndZ +bdQ +cfF +kur +vaU +dws +vaU +bdQ +rmd +vAT +fEn +ukX +iZA +xBR +etq +nSG +nFm +tOw +gJT +cdm +prT +gIU +pZs +igL +uys +igL +lqX +hDd +pGn +bdu +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(118,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cGO +bPw +cGO +cGO +eiM +iwN +eAs +gnK +bPw +kMH +sam +ivH +cvk +hQJ +csI +gUK +rRm +dUD +jHj +fDY +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +tAD +yfx +saz +iqZ +tAD +lMz +qmK +hsf +lmO +lfE +doi +wPv +iMd +ecO +gua +oLK +dvG +vDt +akm +tMe +pdl +tzq +aCa +ojj +pAl +fkN +pdl +eeA +lVe +uLL +nMR +kma +kCh +ajC +mOt +vJz +dYy +gST +pmV +pmV +sAc +pmV +pmV +pmV +pmV +pmV +pmV +pmV +juY +pmV +pmV +sBQ +iAY +odu +uLL +ubp +uLL +jzx +nJB +xPY +fYj +rdK +xzI +wmS +aUK +rZz +dNf +eUC +jkx +wMG +tOw +cGI +lcj +wJr +lMi +sHI +bdQ +uja +uPH +rSs +bdQ +sFX +xlL +fEn +tOw +ayg +ugc +azw +ugc +oUR +ukX +ykP +nck +tXH +ooN +cpL +jOj +jOj +jOj +uFv +kFI +qJJ +nck +ykP +gJT +gJT +gJT +ykP +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(119,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +gJT +cGO +juB +lhE +xeX +jzQ +bPw +xdD +ejC +enl +eLB +eEv +csI +gdL +pWk +jHj +jHj +gym +gym +gym +gym +gym +gym +gym +gym +tAD +tAD +tAD +tAD +tAD +xlO +tAD +tAD +tAD +wdQ +tYA +kTC +hfR +rQQ +xDI +fhr +bPV +gsi +cPZ +cPZ +cPZ +cPZ +cPZ +cPZ +cPZ +cPZ +lWq +cPZ +fkI +mSL +fkI +fkI +uLL +uLL +qar +iyJ +vMB +ajC +gTY +ccp +plC +pmV +pmV +qFS +tUf +dOv +smp +fCR +pmV +qwd +wkR +ntL +lND +yhH +pmV +pmV +uAI +fqj +owy +xZB +uLL +uLL +iyZ +uLL +uLL +uLL +cYI +gYy +wWV +jcd +dNf +wUV +jkx +wMG +tOw +fJo +cPK +tez +fEO +bqa +dSJ +pXt +lDF +pXt +dSJ +efA +nYT +bxm +mAz +vjk +nYc +uhP +gRc +ree +ukX +gJT +nck +nck +gab +sxT +gYD +qeN +sts +kFI +gjr +nck +nck +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(120,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +cGO +vNT +xSw +lCS +xbk +bPw +bPw +rIY +yaR +hST +bPw +csI +csI +jHj +jHj +gym +gym +gym +gym +gym +gym +gym +gym +gJT +tAD +gDY +lXu +xFp +eGu +fCj +tAD +iFu +cqq +pUf +pUf +wdQ +vvT +lam +isw +wdQ +gsi +gsi +aat +ovT +rgd +xIm +gsi +lML +lug +xtp +eMs +gsi +hfa +mhm +pJu +uGA +ajC +hNa +dYy +iyJ +obO +eIU +mbZ +dTJ +pmV +pmV +kgr +shC +aVq +xmR +vlI +vQl +rZU +lhT +irZ +iXy +tvl +cfd +nWj +pmV +pmV +vOc +wqn +lWc +lUQ +cQD +fgs +hMV +biS +fxz +xzI +wYn +inC +ork +dNf +xVX +jkx +wMG +tOw +kFZ +lcj +qlC +cHP +bTC +qqM +eax +pSg +ohl +ylC +gcj +wyG +fEn +tOw +apv +bhs +vHm +fRE +ukX +ukX +gym +gym +nck +nck +xwx +xwx +klT +xwx +xwx +nck +nck +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(121,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +bPw +bPw +mFl +pOD +mOI +gkQ +bPw +wRy +hwD +aqs +cGO +gJT +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +tAD +piJ +tAD +tAD +xyK +tAD +tAD +fAD +mBA +dNg +pUf +rsG +wCf +aLD +ppZ +weH +gsi +xIm +hdz +dzu +dNw +twY +tEk +wIf +jYc +uOF +gsi +gsi +fKB +iWq +nsu +vGl +ats +lWc +gxp +owM +gJB +ajC +ajC +ajC +pmV +kgr +shC +kVE +gVE +idK +kcL +kcL +iXJ +kcL +kcL +cmM +rcE +nIr +cfd +nWj +pmV +lit +aED +qbQ +pNc +phV +hiF +tes +uLL +uLL +rdK +cJZ +rdK +rdK +rdK +hsS +iMt +xIc +ukX +rAu +iVx +eAW +wLF +ddr +ddr +hVu +ddr +orE +ddr +ddr +kpS +oqb +ukX +ukX +ukX +ukX +ukX +ukX +gym +gym +gym +gJT +jvZ +bFk +svW +vbK +svW +wAB +jvZ +ykP +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(122,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +bPw +bPw +kFj +kFj +kFj +kFj +kFj +kJe +kFj +kFj +kFj +kFj +kFj +cSL +gym +gym +gym +gym +gym +gym +gJT +gkr +gym +tAD +aQS +tAD +rMq +rlC +oqy +pUf +lpQ +phC +jMS +kiT +qRZ +aji +rRT +lRd +xHE +vLy +qcJ +cJP +fwW +fwW +bzx +gsi +nOl +bjn +tbY +mRQ +gsi +fZl +jQw +xhj +toq +ajC +sCp +dYy +pPs +qbQ +acU +dYy +vOb +pmV +auh +ixQ +gVE +grL +nty +jaT +lhq +vnE +cRR +jaT +mjR +vmt +mlN +tvl +aBa +pmV +lpH +bHe +dOK +rhU +fUt +rfH +fUt +uLL +lKP +lKP +xHi +lLt +lTw +rdK +fZn +aeH +wMG +ukX +ukX +gZq +cCs +jdf +hGh +qCn +tbc +trM +tbc +mio +mio +dSp +avf +ukX +gJT +gJT +gym +gJT +gym +gym +gym +gym +gJT +iwh +mEv +eXe +kau +fyn +mdm +wYI +wYI +wYI +wYI +ykP +gJT +lfy +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(123,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ihJ +gJT +kFj +grQ +dsJ +dec +qvk +aFN +qfI +nJG +khu +jjE +aot +pni +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +tAD +cIN +tAD +cKG +kjq +uFU +rhu +bVC +egn +rDh +ijU +fNp +nxa +rRT +oNq +cwk +pNn +tYy +bjn +dzB +bjn +jFD +aKN +xte +apE +khw +sXS +gsi +ajC +ajC +ajC +ajC +ajC +ajC +oPR +jCc +dOK +oSm +sYc +pmV +pmV +rFA +wFG +grL +vYf +wTj +pOz +xeF +pmV +hMC +cHF +wTj +iSP +vmt +kPb +fxU +pmV +pmV +usJ +nIs +fUt +bxN +juN +uNi +uLL +dsq +dsq +nro +bmV +fCf +cJZ +lmI +iTJ +bgZ +eMS +ukX +tOw +ild +tOw +ukX +tOw +vky +ukX +vky +tOw +ukX +puF +avf +gkc +ykP +gym +gym +gJT +gym +gym +gym +gym +iwh +iwh +aTf +gbH +lfw +sKj +xYw +wYI +utz +ucQ +wYI +wYI +wYI +wYI +lEl +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(124,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ihJ +rnW +kFj +tqY +xsP +nZL +otm +tWa +otm +sVX +bfM +vLw +aot +aFA +gym +gym +gym +cGP +tAD +rLy +rLy +tAD +tAD +tAD +pgL +tAD +xvq +gPr +bFI +eYb +npA +fnb +fXw +kiT +pnm +kaS +rRT +hOc +isT +vLy +aff +dyz +dyz +dyz +kct +gsi +jsJ +bjn +tbY +fEc +gsi +sws +sQY +wpu +uDB +dgu +ajC +aHN +gYh +lfb +jLQ +rfY +pmV +cXY +bGC +wFG +qgn +wTj +wTj +gym +gJT +gkr +gJT +gym +wTj +wTj +vBk +wFG +xdr +cXY +pmV +hSJ +uVb +lzx +wqr +pOS +xnq +uLL +sXa +sXa +xBY +aKX +lqd +cJZ +lmI +iTJ +iTJ +bgZ +kNG +uPC +nNy +pwG +ukX +eOM +hMo +ggI +hMo +vjn +ukX +jfI +tOw +gJT +gym +gym +gym +gJT +gym +gym +iwh +iwh +iwh +wKs +eLW +dRR +hIb +kpA +lqn +eeO +gOW +lcF +rKY +fvx +vnD +aMT +oHh +lfy +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(125,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ihJ +gJT +kFj +ttj +qwk +xlT +pjt +jQK +qXS +vpp +sul +pQM +aot +ocH +gym +gym +tAD +wSn +tAD +xGn +epg +iRJ +fAT +bvG +gNU +tAD +oon +kjq +kVV +sGg +khz +sTX +jsH +pUf +xAY +hoB +rRx +cqU +eIA +gsi +xIm +lMq +gfs +tGW +gwl +tEk +jBX +bPN +kmm +gsi +gsi +eOc +yjK +osi +nEU +cDD +exS +uus +kRt +qIM +ikN +kQZ +pmV +jZe +ltz +wFG +xdr +ryH +gJT +gym +gym +gym +gym +gym +gJT +wUj +bGC +sTl +cfd +jal +pmV +aED +jxG +fUt +kij +ePb +gdm +uLL +vYY +oje +ekC +wal +wal +rdK +glj +loi +uNY +cdN +cdN +cdN +jAi +wib +ukX +usR +hMo +hMo +hMo +lBA +ukX +ukX +ukX +gym +gym +gym +gJT +gJT +gJT +ykP +iwh +iQp +eHB +nXS +aNq +dmF +jEq +uXK +bnQ +lhK +wnI +nFI +sCi +gZY +ucU +gZY +ptD +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(126,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +fDY +gJT +oZM +oZM +oZM +oZM +oZM +oZM +pTD +otm +cWe +rPF +rPF +rPF +dIj +rPF +rPF +cSL +gym +gym +rLy +gjZ +tAD +dKK +osT +vnG +pRC +kMF +iHp +tAD +eRP +hia +wRj +bYc +eBs +ssE +lpf +pUf +wdQ +oSe +mvP +xlV +wdQ +gsi +gsi +eOW +xaQ +utR +xIm +gsi +jwT +rvy +utV +bhM +gsi +iAY +fyt +mLj +wXR +nId +rfY +cFA +tkm +gnc +msF +taJ +pmV +bGC +aVq +gVE +sOI +luF +gkr +gym +gym +gym +gym +gym +gkr +ntH +qHO +mlN +tvl +xdr +pmV +sAc +pmV +wTj +wTj +wTj +wTj +wTj +wTj +wTj +rdK +rdK +rdK +rdK +gZz +mzE +dQV +cHI +pOM +poA +qJO +hKb +ukX +jTJ +jUb +jUb +jUb +eVT +ukX +gym +gJT +gym +gym +gJT +gJT +gym +gym +qKi +jvZ +iMA +hHt +bUn +qnc +sMS +mlT +vvi +vKM +waF +mKy +qhF +keB +wYI +fNL +wYI +wYI +wYI +wYI +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(127,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +nnP +nnP +nnP +oZM +vxf +rEU +iPh +bqN +oZM +bct +hie +avd +rPF +wQU +kAF +lUV +iEv +rPF +rPF +rPF +rPF +tAD +evQ +tAD +tYI +coL +kIb +bIf +gyU +tAD +tAD +pUf +roF +rCK +rCK +rCK +srl +rCK +pUf +nmw +mYy +wAx +psi +dnt +wdQ +ajC +ajC +ajC +ajC +ajC +ajC +ajC +ajC +ajC +ajC +ajC +iAY +ajC +ajC +ajC +ajC +ajC +rfY +aah +sYj +pRq +amy +pmV +bGC +cDu +grL +agm +hpS +gJT +gym +gym +gym +gym +gym +gJT +ujw +lvy +vmt +wFG +cQw +bzT +wmV +qLX +hQz +wDC +wDC +wDC +wDC +wDC +wTj +jjY +loU +tHW +xxx +xxx +xDH +qZc +xxx +xkw +xkw +agX +xkw +ukX +ukX +qWR +gKl +ldu +ukX +ukX +gJT +gJT +gJT +gJT +gJT +gym +gym +gym +cgl +jvZ +veC +cQs +iDe +uEK +nNY +gDR +haa +rzg +rOY +srs +qhF +wZg +fmP +pwQ +lDT +vGR +gLd +maR +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(128,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +nnP +nnP +quR +lNi +oZM +gPe +tDu +uxK +fLD +oZM +tgO +ibj +nHa +rPF +rPF +hYY +llE +oLI +lIE +iFv +sPc +lyn +tAD +cBn +oVP +iqj +bdk +fxF +ooC +gNU +tAD +fPE +soK +uXp +rCK +rEh +qZQ +cEF +rCK +dWV +ejQ +uPf +nOq +kup +ojN +niy +pPh +gLB +gLy +qkO +krm +dqv +xnb +ljO +xjq +gLB +tUm +vTC +wDy +hCh +cJj +qwU +dJs +taJ +ewo +lfb +mOw +sGN +pmV +bGC +kPb +cQw +nBt +wTj +gym +gym +gym +gym +gym +gym +gym +wTj +sRM +bGC +wFG +cfd +trd +tRV +pQe +iyI +wDC +wDC +wDC +wDC +wDC +wTj +uMP +uVp +mPp +xxx +iVg +sUe +jzE +xxx +pUI +aeC +akl +wPk +cfx +ukX +ukX +ukX +ukX +ukX +gym +gym +gJT +gym +gym +gJT +gym +gym +gym +sJy +jvZ +czK +dHe +iDe +kSX +dmF +bKL +uXK +rzg +iep +srs +pll +snL +wYI +dZl +wYI +rLc +qaL +wYI +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(129,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hfS +nnP +gMH +bwh +asM +mPA +wSB +vkR +uxK +lnm +oZM +xVs +sVX +dUr +mRd +iJn +jjj +psG +heP +lls +kSl +kTb +boA +tAD +sCd +xWb +uRT +qmf +wQb +tAD +uBa +tAD +aiK +ked +upv +rCK +mvO +skq +qbN +rCK +fPt +jSO +hPd +aQo +sFQ +bIo +dxY +ajC +seB +grt +mLj +urz +qbQ +blK +aEd +cwL +tKy +mLj +lQU +ajC +uCS +sQy +fll +ajC +ceA +pnT +xcw +jvA +rxS +pmV +tnj +vZM +dPQ +iyI +iyI +iyI +gym +gym +gym +gym +gym +iyI +iyI +iyI +iGe +qGE +dDv +fMa +tRV +oRP +iyI +wDC +wDC +wDC +wDC +wDC +wTj +xxx +mxp +xxx +xxx +lZk +jwO +uJD +xxx +nwU +mJT +iDN +lgn +egu +wqt +eYH +ola +dbe +diw +diw +uHq +ykP +gJT +gym +gJT +gym +gym +gym +ouk +jvZ +baD +rxL +bOi +qnc +sMS +mlT +vvi +dTP +cGK +hqy +qhF +ezv +wYI +brO +wYI +wYI +pAc +wYI +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(130,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hSx +nnP +xYK +ddw +aiH +mRB +dBH +vym +mfi +tRK +jXC +rgx +qEO +dYI +wUD +pTb +ptn +psG +mAx +rPF +bJU +bqZ +slL +tAD +tAD +rUa +tAD +fAT +fAT +tAD +oWD +sge +wJb +avT +wJb +tAV +oiG +eJe +mpN +tAV +rQj +szF +rHH +tKf +jgm +aMO +sTh +uLL +cRP +uLL +uLL +uLL +uLL +uLL +uLL +uLL +uLL +uLL +iAY +ajC +gTZ +pQJ +kCL +eyQ +ceO +pIh +jnt +bnT +uNd +pdE +aSM +xyj +aqZ +lTt +reO +mSl +gym +gym +gym +gym +gym +lTt +reO +mSl +hfZ +jhL +pFd +oYz +iJX +cXW +wNA +iiZ +wDC +wDC +wDC +wDC +wTj +uGm +hZN +kZq +xxx +urq +jwO +nUA +kRL +uPC +wJo +tNu +dhw +jcK +wqt +tXr +nRm +oHX +oeQ +diw +wqt +wqt +wqt +gJT +gJT +gym +gym +gJT +ykP +iwh +vaz +ghO +uJS +aNq +nNY +bUf +mDt +nTZ +eeO +okx +eYt +rTV +rgX +rIn +ald +cpk +jmk +tch +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(131,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hXm +nnP +olR +hbb +jaV +xRk +mYv +oDI +vwn +vsk +pEc +jKF +kEW +iBS +ydj +iJn +fQY +caw +cKt +uoB +yic +kTb +vig +tAD +tMW +xWb +dmn +fQE +cUZ +xGl +pjP +mdT +xnA +pQW +hAK +rCK +bym +pPe +hPc +rCK +gmT +jIO +acb +gac +sGD +rUH +jyJ +gIQ +wFC +cxB +cWw +ubb +xIA +lgA +ejt +kbN +jUo +uLL +kdQ +uLL +uLL +uLL +uLL +uLL +uLL +tHl +iWG +iaD +rCE +pmV +tzD +uzC +upQ +iyI +iyI +iyI +gym +gym +gym +gym +gym +iyI +iyI +iyI +tdr +uzC +dyW +atu +bgQ +rMe +iyI +wDC +wDC +wDC +wDC +wDC +wTj +sXz +qRi +mVq +ybX +rIP +fVb +qjC +pqT +sXg +exI +nFH +hmK +dMi +hFG +bPX +jdW +eKd +oce +diw +aBL +qTx +wqt +wqt +ykP +gym +gJT +gJT +gym +iwh +iwh +iwh +oMR +hes +vxt +tzf +ciM +wif +ukm +bBQ +pOv +qhz +puO +qPT +cMz +mKr +dHM +wYI +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(132,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +nnP +nnP +mBN +ufX +oZM +gIo +skL +brW +flO +nnP +pnK +gRD +kWF +rPF +rPF +ohT +frt +jTe +rPF +bMm +sfL +xPT +tAD +nQd +xWb +wJt +lTU +uUa +ejl +hTO +xHh +cOk +iTX +lRZ +rCK +hYX +lSt +tmE +rCK +vDE +laG +bLh +tdl +ctQ +twp +hWp +gIQ +alH +qVW +dHs +tTs +hks +lgA +fUZ +mEo +tSJ +wWS +ftA +nZO +ntz +ijn +hud +ckn +uLL +fpj +uhn +fWh +avC +pmV +bGC +uaz +xdr +jKm +wTj +gym +gym +gym +gym +gym +gym +gym +wTj +oTF +bGC +nlv +grL +gJn +bgQ +bzZ +iyI +wDC +wDC +wDC +wDC +wDC +wTj +wxu +kOc +sPe +xxx +hnJ +onZ +apa +kRL +poA +sSj +lZq +daN +aLT +diw +gJX +oYN +njw +ocQ +hDw +qbn +nmq +ccR +wqt +pDy +gJT +gJT +gym +gym +gym +gym +iwh +iwh +ekf +gbH +lfw +nsc +hMu +aQf +xXO +qXG +wYI +wYI +tch +tch +wYI +bTi +wYI +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(133,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +nnP +nnP +nnP +oZM +pcf +jEy +sGT +neW +oZM +egA +hie +qxq +rPF +jzd +lih +ojz +lSj +rPF +rPF +grC +rPF +tAD +qhH +bNX +aGe +qVN +tAD +tAD +hlu +tAD +tAD +rCK +sEL +rCK +rCK +rCK +hab +rCK +rCK +xCZ +oSq +dKS +gKQ +mvg +sMC +gIQ +xWD +qVW +jjH +bVx +wzR +lgA +ipk +xVN +jtW +yez +fXz +hzZ +hkK +iir +vUr +bdA +uLL +ajC +ajC +cRt +ajC +pmV +bGC +nlv +cfd +nWj +gii +gJT +gym +gym +gym +gym +gym +gJT +kud +kgr +shC +qEF +xdr +dWI +wEE +soN +hQz +wDC +wDC +wDC +wDC +wDC +wTj +qLo +qRi +qCs +mLg +ufI +onZ +uAK +xxx +jlI +ndD +jSv +abK +jtJ +diw +wcq +hfI +trN +qmE +fBY +wLC +uAJ +xOK +wqt +nQp +gJT +gym +gym +gym +gym +gym +gJT +iwh +lch +flA +igl +oxi +fwb +wYI +wYI +wYI +wYI +ykP +gJT +gJT +gJT +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(134,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +fDY +gJT +oZM +nnP +mHs +nnP +oZM +oZM +pTD +otm +nnc +rPF +rPF +rPF +pxb +rPF +rPF +cSY +bVJ +uvH +tAD +uIS +vFI +tuQ +iYU +bbb +ooA +jGW +xsN +tAD +dpR +cfa +rIf +gzR +taT +rMy +swT +rCK +vjO +eQL +occ +sKd +vjO +gIQ +bVe +ncv +xQB +aNP +qGN +lzE +lgA +jWg +apH +dod +kTX +uaw +cjI +taG +xaG +pSz +pmj +suG +agv +rwZ +syJ +lZu +pmV +bGC +uzC +uzC +mKi +pZt +gkr +gym +gym +gym +gym +gym +gkr +iiC +rOd +ujz +uzC +xdr +pmV +iLL +pmV +wTj +wTj +wTj +wTj +wTj +wTj +wTj +mpD +uJA +pvq +gKZ +hqq +xhQ +jjy +xxx +rQw +loi +kCw +kLF +agH +diw +iNt +dhG +njw +tbm +xis +qXK +pEj +oSl +wqt +xAF +gJT +gJT +gym +gym +gym +gym +gJT +jvZ +qfR +keU +hue +keU +dUe +jvZ +ykP +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(135,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oZM +qpL +bkF +foX +oZM +jaM +gWU +otm +qJL +gRD +wOL +gRD +mIT +nos +rPF +hiM +dFc +kKm +tAD +olz +voU +wJt +puQ +tAD +ncX +eSk +wfN +tAD +rhS +ngS +qgp +xNE +tQo +iiQ +rjA +rCK +lFe +hoZ +tDh +nSu +dXB +gIQ +xXX +hUG +sqx +mZp +jZr +dPx +dPx +dPx +dPx +dPx +dPx +fgg +dPx +dPx +dPx +dPx +dPx +suG +ykc +wCy +dqR +tmU +pmV +wvr +vmt +nlv +xdr +nep +gJT +gym +gym +xXD +gym +gym +gJT +lsy +aAf +nlv +grL +rNZ +pmV +cUR +bcm +rEI +pSH +rCn +rsv +xvm +fSV +suG +suG +uXm +suG +suG +suG +suG +suG +suG +suG +xkw +buC +xkw +xkw +diw +rqr +mIi +lnO +mkr +diw +aHQ +cXo +wqt +wqt +ykP +gym +gJT +gJT +gym +gym +iwh +iwh +iwh +jvZ +jvZ +nJa +jvZ +tcI +iwh +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(136,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oZM +gEJ +fEF +cRV +oZM +tqY +xsP +ope +pgq +mwM +xOm +nZL +mYk +veU +tAD +tAD +tAD +tAD +tAD +tAD +tAD +dOi +pkx +tAD +heK +viQ +ktH +tAD +uCW +dWd +sae +rCK +qnK +ouj +xXF +mac +bEL +wbA +vCm +tep +hMz +gIQ +gIS +hUG +nhX +oZb +nFi +dPx +bDj +aww +pFk +viw +gmA +uWg +awW +eNF +vyw +aww +pcR +suG +tpn +gvX +fjF +aGv +pmV +cXY +bGC +nlv +rVf +wTj +wTj +gym +gJT +gkr +gJT +gym +wTj +wTj +adj +nlv +xdr +cXY +pmV +sKF +gTK +crs +xel +bsq +lIJ +pBW +dEV +bcm +pJQ +sco +eLT +nCp +poM +jix +aTF +qAI +suG +bGE +qJG +feH +kvl +diw +mkJ +ftW +sBb +ybK +diw +wqt +wqt +wqt +gJT +gym +gym +gym +gJT +ykP +iwh +iwh +iSi +nAi +noe +kJG +gih +emX +upO +mSY +xKJ +trC +trC +trC +trC +trC +rQa +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(137,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oZM +oZM +oZM +oZM +oZM +mqG +pMe +gXY +osL +xnF +sDB +mlw +eYG +hLN +eVS +pYO +pYO +fFn +stD +tAD +bNl +wJt +tEQ +tAD +nMm +viQ +hvi +tAD +evu +ngS +uVN +cuP +bDg +mfN +oGi +wVT +bCr +hTN +vCm +wfE +uMd +rgR +mvJ +mdD +qHl +aZI +prD +dPx +fSy +fOm +wEv +wvO +dmv +rdS +sUS +foo +dym +rWr +xSI +suG +suu +lFO +vYr +thZ +pmV +pmV +rFA +nlv +cfd +kyA +wTj +xNo +tRL +pmV +vHx +mUn +wTj +oZw +shC +nlv +fxU +pmV +pmV +cUR +nIP +fhh +aqX +eNN +bZJ +puY +vDF +bcm +akH +kYR +omP +cLQ +cDl +bfX +vqm +gHa +suG +cRX +tbP +dmH +ktl +diw +diw +diw +diw +diw +diw +hYd +dRI +gJT +gym +gym +gym +gym +gym +gym +iwh +qgZ +uye +pjO +uuL +dmH +xyz +mYR +cKX +aVG +vzP +tbk +qGg +oxC +oxC +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(138,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +kFj +kFj +kFj +jsi +ciG +sho +ciG +jsi +tAD +tAD +tAD +eCH +uoV +xDU +tCV +tAD +bNl +fMY +puQ +wRM +wRM +rNj +wRM +wRM +cTP +gil +dqm +rCK +ycE +eBu +kxF +mac +mSM +xqn +vCm +elB +dsE +gIQ +gFS +hUG +aPh +vOa +mtF +dPx +lYs +aww +abQ +wBf +ccA +cCc +cxa +irD +veP +aww +qpC +suG +dYB +mBg +qBX +wlT +wiG +pmV +auh +uzC +pQt +cfd +gem +jaT +wBB +cnE +jJP +jaT +oqk +shC +uzC +uzC +aBa +pmV +xyC +imR +obj +oaX +tNT +kQp +vbi +qRf +qSu +bcm +aUB +rMY +mKJ +jHB +poM +kFR +tyS +qAI +suG +acP +nZj +nlE +mAI +oTs +lDU +rrU +hTo +bUj +iwh +iwh +pbP +pbP +iwh +iwh +iwh +pbP +pbP +iwh +iwh +uLg +bHo +pjO +jXd +tUo +jVY +bSb +jct +jvZ +rQa +cYz +eBC +sof +wDA +trC +rQa +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(139,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +bJT +qha +bBl +pxG +lPs +tAD +fgm +saz +lYh +uJb +fuW +dAL +dAL +pfi +lku +viQ +wRM +aRr +gmc +aca +lnQ +rCK +kyr +rCK +rCK +mmw +iup +riG +rCK +rpw +gtp +tmb +jya +sVF +gIQ +ePw +wzi +hzL +dPx +dPx +dPx +ird +ird +ird +ird +ccA +pBK +cxa +ird +ird +ird +ird +suG +suG +suG +uWi +qjr +uFM +pmV +lvy +ktk +nlv +uzC +rhh +iub +iub +iub +iub +iub +wLP +uzC +fag +grL +mDh +pmV +xwX +hRd +gTK +vrT +tRa +teS +iNX +bcm +rLu +bcm +fht +iJW +iEm +kjt +suG +suG +bWx +suG +suG +dJV +mNQ +iLF +oTA +qBb +qBb +ieg +qBb +uqc +ayt +aYy +aWv +tQW +xJQ +xvK +vgI +vRY +guG +aYy +gEf +fOL +tko +skW +xlD +sLc +uia +kLK +uGn +gWV +oJs +hsB +mHk +qOc +oxC +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(140,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cSL +gJT +chW +chW +vQw +vIv +fPZ +pQa +tYi +tAD +tAD +tAD +tAD +wdh +tuK +wdh +tAD +tAD +aPu +iEt +wRM +vxx +peB +jbL +wcr +mNp +aeU +eEc +rCK +ebc +reL +rCK +rCK +vjO +ahp +sMC +uVH +vjO +gIQ +gIQ +bsl +pKv +dPx +bDj +aww +pFk +hcd +hKz +ecV +utW +cCc +wMM +kPG +xco +rCx +vyw +aww +pcR +suG +iKq +bcm +bcm +pmV +pmV +lvy +vmt +uzC +nlv +afJ +awI +kki +jsw +aPb +nlv +uzC +grL +agm +pmV +pmV +pVZ +jAD +bcm +rZY +igj +fIK +wSJ +bcm +xOV +bcm +poM +knC +poM +suG +suG +rLf +svJ +yas +gYZ +gYZ +xYX +iHg +kCd +exe +yhe +jvZ +iHg +iwP +eoI +pbP +dNh +fvd +xBV +qZz +nzm +iek +evk +pbP +qTF +hVS +aMv +pjO +xlD +oBL +aYL +cWS +oUY +kpN +rQa +trC +trC +trC +trC +trC +ykP +vYd +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(141,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +pGt +ijV +weW +xHa +lUo +tzZ +poh +tAD +hIK +oEX +wmO +uml +ydh +xWb +hFb +cWB +hrq +wRM +kCp +oQa +pzy +pzy +bEv +psY +guo +tAD +tAD +tAD +vjO +xoF +hsI +jMu +qte +kEg +uaG +tkw +gIQ +gIQ +gIQ +dPx +gdF +rWr +cYv +gQs +qVp +nqg +wti +yig +puT +dqS +yhF +waI +lqV +fOm +lRO +suG +rhf +eID +tUk +rZm +pmV +pmV +nIa +mfF +rLH +smp +fCR +pmV +qwd +wkR +aBc +ooG +rdb +pmV +pmV +cAr +nXi +ciw +bcm +gTK +gTK +nWA +bcm +bcm +bcm +bcm +ybI +iJW +wJc +suG +teP +sgI +bVk +hpy +gfy +mJd +xho +bjr +vcJ +jWF +vcl +iwh +jfF +cza +jCo +iwh +xNC +pRP +dEh +vmc +sIs +ssw +mvW +iwh +xum +aOh +xmY +ibz +xlD +oBL +ykv +bKG +iKr +aVG +vzP +tbk +mrN +fsx +fsx +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(142,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cSL +gJT +gJT +chW +jQc +asR +eRT +lQk +duD +rXe +hrb +cVk +aEn +oUO +sJN +pYO +uAh +hZx +eKp +eKp +efj +wRM +sWz +aXk +rPV +pzy +nLn +swK +opJ +tAD +ksp +tAD +sCN +uXT +jmf +tCw +rYM +uvE +kMz +jXE +eAz +pym +jin +dPx +lYs +aww +abQ +iFh +cZm +aDq +iHX +wll +hTd +uZi +jvO +qyJ +veP +aww +qpC +suG +fUn +bSA +bSA +dlC +dFM +pmV +pmV +npj +pmV +pmV +pmV +pmV +pmV +pmV +pmV +hoA +pmV +pmV +ybM +peX +hSa +cHN +vTK +uTf +eaS +nYK +jpu +ohH +xMz +tQx +lAF +fAx +bCR +suG +dzK +qYs +lGD +rdV +ftI +nbK +iui +fOL +jse +jWF +cKH +qvl +eOF +wMx +egh +nXf +wwI +jcX +rEu +gOi +xzH +rtO +wwI +nXf +xeu +pvo +fMs +vpc +xlD +oBL +jSo +eMn +dmH +jvZ +rQa +cYz +nrh +wJx +paH +trC +rQa +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(143,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +mdr +nNB +kVn +xLr +uBm +ycc +gYk +tAD +xzQ +xWb +xWb +rnY +hAN +fyr +rJQ +ggO +ukD +wRM +lji +dlx +eNG +pzy +qgG +kdD +oob +wRM +wRM +wRM +mcr +gsY +krn +pHv +acW +oAA +rRn +gsY +oor +pym +fep +dPx +dPx +dPx +ird +ird +mGd +anN +jKW +kqn +puv +xrx +cii +ird +ird +dPx +dPx +suG +suG +suG +rvu +vgM +cbY +gaA +cLs +dyP +dpw +hFz +tiV +bEG +owv +tvx +pPu +hNd +dNO +gaA +mmD +puh +suG +okE +suG +okE +suG +pqf +cGm +rdO +tGx +bcm +rvD +rWJ +jwr +mLL +aaD +fpS +aCj +fLm +gmg +mJd +knY +nYX +gbf +geO +tto +iwh +prO +juP +mNi +qhk +sYa +xvU +eyY +tNQ +ykh +xvU +eXR +gCI +xNY +cLo +dUk +bWi +wWT +qkl +wWM +uCs +rgl +gWV +oJs +hsB +eNX +bLG +fsx +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(144,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +cSL +gJT +chW +chW +ieK +rOt +tBl +nhw +sqi +tAD +tAD +nQh +xWb +svu +hPD +foL +xfU +vRi +fuw +pQA +wRM +wRM +wRM +xFP +wSV +hje +fIe +lYX +mAi +nAg +wSV +sVo +vCm +dyN +tde +nTS +pUM +eRO +vCm +kZj +pym +tjG +kON +cjx +dPx +rhl +jdZ +eND +miA +xdx +oMj +aiL +fvr +kEX +ozf +dMg +bUL +dnd +alP +vvK +suG +piI +iZN +hFE +bcm +npe +usw +atL +vrZ +gEe +wZz +aXn +quJ +pCr +usw +bLA +bcm +sxy +suG +suG +gqw +mQc +dwM +suG +suG +xTp +mIo +vhR +aCJ +tSM +jlQ +bCR +suG +raN +kMD +vMC +lcb +qfC +rMp +pWy +mHz +bts +oCs +piO +qvl +aje +juI +egh +nXf +wwI +bRT +wzr +gOi +pdH +cnC +wwI +nXf +fAu +pvo +knY +vpc +xlD +oBL +uLW +tYl +oUY +kpN +rQa +trC +trC +trC +trC +trC +ykP +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(145,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +vjG +bif +ioI +lxr +xRd +tAD +gis +xWb +foL +ydh +uev +tZY +fXv +bLd +ovP +jQx +cQl +wJf +wRM +cZw +iJd +rBC +tNR +vZs +qLu +cWd +vjW +rcm +vCm +niE +sKS +hcZ +iDa +ech +hYs +khR +kDW +iTm +sYY +aaF +uua +dqI +pay +vui +uUV +aOt +lqM +vWW +iIS +hDC +rdS +kLD +pTs +mWe +aVa +sFf +suG +eYs +lMh +oCO +nkL +sXe +xFe +hXE +sNK +uTq +xFe +oNW +sko +jCW +tLb +mpF +aQT +rgL +suG +oSs +rhw +wjR +jxi +aGw +suG +rTR +fxQ +gTK +bcm +qyk +yks +wJc +suG +fDU +lun +iNO +pgM +mQT +fQv +fBN +iHg +vUq +oCs +weg +iwh +cVg +uTm +pZm +iwh +wjf +kAi +hyz +nfO +gvY +uRq +lAr +iwh +tcW +uTm +vCx +dDQ +xlD +drw +dxX +stp +xzd +cvt +pgI +sdW +gGE +uCR +uCR +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(146,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +chW +chW +pif +pif +raG +pif +pif +tAD +tAD +tAD +sie +ukD +dPP +dDw +kCF +cmD +jpB +xWb +eZA +dOf +wRM +vWa +cZX +fzz +pFM +lpd +sxY +vWm +xFP +thH +vCm +fMk +iOF +hCH +jMG +tNn +vCm +bzV +pym +tCB +hfG +hBE +dPx +jiN +oJI +lGE +izc +gKc +xrS +jnW +mmh +xlq +khQ +kgb +bUL +beY +flH +nSh +suG +afn +oza +gLD +bcm +mek +wZz +wiS +rcD +xmO +usw +wiS +cNj +wcZ +wZz +mxB +bcm +sna +suG +eAq +wwa +kVz +gTR +mLK +suG +nuR +qWH +njv +bcm +poM +rkO +poM +suG +suG +vdF +dOl +vlu +gYZ +gYZ +kIg +bjr +wwI +rIO +hOq +jvZ +bjr +qqa +dQO +pbP +jXA +fvd +wwI +eeH +wwI +iek +usv +pbP +qQn +wxn +ckB +pjO +xlD +dmH +rZX +aab +dmH +jvZ +rQa +cYz +fEq +kOH +acG +trC +rQa +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(147,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +njl +njl +njl +njl +lvT +njl +njl +njl +njl +tAD +jsN +pQA +seN +nWI +vmi +bZA +vjD +piB +oWP +ctM +wRM +gWm +enD +oDB +jhA +lpd +jRr +mVj +xFP +bBO +iGT +fUY +nvX +dst +aDU +dsN +iGT +dbm +pym +fep +dPx +dPx +dPx +ird +ird +oPF +djB +fhd +gKD +lop +xrx +bwJ +ird +ird +dPx +dPx +suG +suG +suG +skG +vgM +lTC +gaA +qjW +jhS +wmj +qYz +rHf +gmW +cvr +qYz +raT +cQG +nAd +gaA +gvz +suG +hPa +hUr +bKK +hUr +hPa +suG +sQI +trp +eWv +bcm +fgw +sco +vtJ +sFb +suG +suG +suG +suG +suG +koF +uiH +bbT +kBf +kBf +kBf +goo +kBf +kBf +omB +lEC +swv +jja +mLR +sfi +mLR +vnA +fJv +dkz +pHa +uKx +sMA +pjO +xlD +dmH +dAh +maN +lQm +cvt +pgI +gim +ocT +gKt +uCR +trC +rQa +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(148,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +tAD +tAD +tAD +tAD +xbQ +wSz +tNA +tAD +tAD +tAD +tAD +wRM +jCe +cZX +oDB +pFM +lpd +cpn +xoa +wSV +mxM +fgM +wtK +hWL +vvL +sBT +bbB +sat +ohv +pym +kLN +dPx +bDj +aww +pFk +bLi +iMY +amO +pCo +qjt +aHX +sGz +wjO +nkA +vyw +aww +pcR +suG +eRk +neS +tin +ylk +elf +bcm +bcm +bcm +bcm +bcm +cWr +nLP +fFW +bcm +bcm +huQ +bgN +bcm +suG +suG +lhn +soc +ptM +dRN +cDk +suG +suG +wFE +wCZ +bcm +qfr +jQm +ryh +mIN +mSW +uoA +xlx +vFf +suG +bGE +liP +iKe +iKe +wPB +vsK +jvZ +axk +lrI +kVG +kVG +vAj +vAj +kVG +aaC +kVG +vAj +aSx +kVG +kVG +tEE +lOk +pjO +xlD +dmH +cDb +sBP +vki +iwh +rQa +trC +trC +trC +trC +trC +rQa +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(149,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gym +gym +tAD +tAD +tAD +tAD +tAD +gym +gym +gym +wSV +wSV +wSV +laa +gnb +hMs +wSV +wSV +wSV +sMC +bFt +wQL +aMg +loY +rLx +rpV +aCO +sMC +sMC +sMC +dPx +ntG +fOm +xqN +mbu +qVp +kcG +tLq +qrr +aFh +qLU +yhJ +dGu +nxQ +rWr +nNt +suG +otn +eID +eKQ +seJ +bcm +bcm +gJT +gJT +gJT +bcm +ogz +oVq +tOs +bcm +vqE +wrl +qtU +oqX +atm +oet +qaE +rzd +rzd +rzd +atR +med +suG +szc +suG +suG +suG +suG +suG +gEI +nXi +aWI +gnQ +oQJ +suG +iQB +pQr +dmH +wAh +suG +suG +suG +suG +iwh +kVG +jQN +lrF +aft +kpu +bRy +xjo +xmk +goa +qeW +kVG +mxN +iXo +drV +mTY +oZI +lmu +yjn +caH +iwh +rQa +ykP +rQa +gJT +rQa +ykP +gJT +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(150,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +xFP +ylW +vnU +skf +jWz +gBM +xFP +gJT +sMC +sMC +sMC +rrk +sMC +vRO +sMC +sMC +sMC +shg +nPA +dPx +lYs +aww +abQ +uvR +kAd +vCn +gtg +cCc +cve +rtR +coW +saS +veP +aww +qpC +suG +dPW +bcm +bcm +bcm +bcm +gym +gym +gym +gym +bcm +bcm +bcm +bcm +bcm +oZz +pvM +jKu +suG +suG +qrX +xYU +kuU +wej +crV +syK +uOX +suG +suG +suG +iFH +idS +hbV +suG +suG +cdx +sco +iby +bKq +suG +jAQ +pQr +dmH +pwd +suG +egs +lQM +nTz +kVG +oWp +bBP +tMz +uyn +usp +vCd +bUg +uyn +hCV +pkJ +dhX +pQr +jnX +dmH +dtO +dmH +cDb +sBP +sXQ +iwh +gJT +trC +trC +trC +trC +trC +gJT +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(151,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +chW +njl +njl +njl +njl +dQL +njl +njl +njl +njl +chW +fDY +gym +gym +gym +gym +gym +gym +gym +gym +gym +dCk +xFP +cqG +jNP +eNJ +aPZ +bdh +xFP +dCk +sMC +iYc +oyn +mLr +jkp +seD +uuc +mwq +sMC +upM +mTx +dPx +dPx +dPx +ird +ird +ird +ird +ccA +pBK +cxa +ird +ird +ird +ird +suG +suG +suG +gHD +bcm +gym +gJT +gJT +gym +gym +gym +gym +gJT +gym +bcm +iJJ +hwh +fWi +frJ +nVS +suG +etg +oej +qLD +tAq +fJh +rtM +xYF +eSN +hDB +nVK +cbv +iYE +uZr +fbR +deR +suG +gTK +fVx +gTK +suG +suG +suG +jQo +suG +suG +suG +bdB +reR +nTz +kVG +mDW +mbN +ykS +pmE +hMJ +ntD +pTz +dda +pOE +mEq +riQ +mYe +ykn +nvT +fBo +vdm +aFX +sGp +dhr +eEs +sXb +moJ +xeP +lLX +lLX +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(152,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +xFP +xFP +ohp +bNm +xhZ +xFP +xFP +gJT +sMC +eUX +wBe +eVo +xuZ +xot +pBv +jYZ +sMC +sXN +mbY +mMd +vfi +dPx +bDj +aww +pFk +haZ +ccA +cCc +cxa +ePN +vyw +aww +pcR +suG +hkR +rVi +qoj +bcm +gJT +gJT +gym +gym +gym +gym +gym +isy +isy +suG +ofq +suG +suG +tvw +suG +suG +rNU +uqO +plL +vTY +qXj +rJV +vIY +dId +eSN +lbg +snD +nWz +nsd +txl +vKd +suG +rty +yks +ipi +gTK +jPD +kAT +eEj +ykJ +aIF +rfu +oqE +xLs +suG +kVG +kVG +gqu +uyn +okp +mdp +utd +wXu +fJB +uyn +qFL +tGP +pzj +hzQ +qST +pPV +wul +ezF +szp +tPy +jvZ +gJT +cYz +sCm +tFh +hjS +trC +gJT +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(153,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +xFP +xFP +xFP +xFP +xFP +gJT +gym +sMC +kyo +rKH +sMC +cIl +sMC +vTf +rqT +ljc +sXN +mTx +maX +mBn +dPx +mmG +fOm +jEa +uAb +dmv +rdS +sUS +tHq +bNk +fOm +mFE +suG +gHD +nXi +bcm +bcm +gJT +gym +gym +gym +gym +gym +gym +isy +fEe +oAO +rTl +cad +bLM +qHn +cTa +cad +roG +iQc +vqc +aLU +bcE +lYc +rsx +wkV +nTJ +cAS +isY +eKZ +rpU +jFL +bXU +suG +dYb +txf +xvc +vML +xvc +oqn +pyv +xOc +kHt +xFE +pkO +lkQ +suG +rXs +kVG +sDX +jeN +dVF +qGO +kvg +dvN +pTz +bUg +tHT +fuD +duq +hFV +pdW +vAG +xGi +uLW +hMT +jjU +dEt +pZG +rFc +roN +lVK +lLX +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(154,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dCk +hqX +ylG +ocH +dCk +gym +gym +sMC +cas +rjK +orS +orS +orS +xxR +vxF +nKh +nbV +mTx +dfa +jQM +dPx +lYs +aww +abQ +gPk +dNd +has +oxj +wLd +veP +aww +qpC +suG +jUB +bcm +bcm +gym +gym +gym +gym +gJT +imu +gJT +isy +isy +hRx +nou +wzV +cad +gEO +sOz +qHn +uvW +ggU +pfY +kJc +ePD +cCH +ePD +xoD +ptF +eDh +lbg +hKN +cvx +nsd +tRY +fPJ +suG +cxG +yks +fyD +gTK +xoh +uTx +xvc +sjU +buD +hKJ +xvc +xvc +doR +qUk +nNc +lCP +uwy +oYx +adN +rbS +cAu +tdd +loF +tHT +fqi +duq +veT +pdW +pPV +xGi +cDb +lzw +tPy +jvZ +gJT +trC +trC +trC +trC +trC +ykP +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(155,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +njl +njl +njl +njl +njl +njl +njl +njl +njl +chW +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +sMC +kFU +fWP +qmg +vaj +bjB +mCw +jzZ +sMC +bmB +wub +wNV +qiw +dPx +dPx +dPx +dPx +dPx +dPx +oia +dPx +dPx +dPx +dPx +dPx +suG +rIv +bcm +gym +gym +gym +gym +gJT +iUM +iUM +iUM +isy +bAC +ffu +srf +rVN +cad +ngi +qHn +fyJ +cad +coB +ggU +mjA +hKI +dfe +uUI +vkX +gDP +fxy +nVK +ahU +uTP +kfh +gkf +eAK +suG +suG +tic +suG +suG +myU +nPn +oGN +bUm +sib +vPB +mJH +byx +suG +mCk +kVG +kxc +nPP +fXK +lHw +gzy +ggS +tzP +heU +tHT +fFt +duq +hFV +pdW +pPV +xGi +pFY +slX +dhr +eEs +sXb +moJ +ayS +vuk +vuk +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(156,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +chW +chW +chW +chW +chW +chW +chW +chW +chW +chW +chW +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +sMC +esy +uwN +lOP +wfJ +nuP +lwf +han +rVD +msa +owm +rVD +rVD +rVD +erg +aLW +nBd +wLo +iCF +quV +anU +jJH +nBd +aLW +hMU +suG +gHD +bcm +gJT +gJT +gJT +imu +iUM +iUM +gAJ +mus +isy +srt +gBS +pCG +mzH +cad +cad +paJ +cad +cad +hUr +jiQ +lUD +jiQ +hUr +jiQ +fhL +jiQ +hUr +nVK +nVK +lbg +sgp +lbg +nVK +nEQ +ovQ +dKQ +qnH +suG +ydt +eMW +vJr +bcm +bcm +bcm +poM +poM +suG +kVG +kVG +eUS +uyn +dOa +lwY +xAG +auV +btQ +uyn +kyc +tVg +ahk +gwu +wUL +lsb +bBr +saq +kNa +tPy +jvZ +gJT +cYz +ksH +fHe +eVc +trC +gJT +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(157,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fDY +gJT +gJT +gym +gJT +gJT +fDY +gJT +gJT +gym +gJT +gJT +fDY +gym +gym +gym +gJT +dCk +buJ +pdX +pkT +dCk +gJT +gym +gJT +gym +gym +gym +gJT +gym +gym +sMC +tiO +tiO +wWb +tiO +iEb +tiO +tiO +rVD +nWK +rJg +wrU +mYh +rVD +fGd +vEn +wsa +mnW +bBc +vSC +kVy +fUx +ast +fHs +eGx +suG +fDX +bcm +gym +gym +gym +exr +iUM +eqi +kjg +kVo +fGD +xpF +hjH +hsE +jGe +isy +cvH +rTw +xFT +tYT +urK +fZU +saw +nzf +nhD +oEd +ina +fdf +jpI +wNg +htZ +oEd +lrL +xFT +urK +ama +auj +hqF +mCI +suG +suG +hqZ +suG +suG +gJT +gym +gym +gym +gym +kVG +nOX +ibs +vXm +duE +fXK +ogx +tzP +bBN +hgR +oal +tzW +oEU +nFJ +jwf +fBo +tqG +dIe +xny +jjU +dEt +pZG +rFc +rZj +jnP +vuk +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(158,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +rzA +dYU +dYU +fuL +rzA +rzA +gJT +gJT +gJT +dCk +gJT +gJT +rzA +rzA +rzA +mZJ +mZJ +jYP +gvO +lSc +gnr +npV +nnw +tOb +nzN +uAY +bGt +rVD +rpt +gKO +rQb +bPI +dCj +psM +dCj +qFZ +tZa +oUv +rtg +suG +gHD +bcm +gym +gym +gym +bmS +iUM +iPf +uqM +dyd +lpR +lho +hyQ +iGG +ecY +xyw +lAx +qhQ +mgF +mgF +mgF +mgF +sjW +mgF +mgF +bqw +qSi +nei +nei +nei +nei +nei +mIB +alL +xES +coT +uIh +tSt +mxe +cVs +gCL +jEY +nCK +sLA +oib +gym +gym +gym +gym +kVG +bNE +dvw +pmW +uyn +nPP +ckC +heU +uyn +jlH +tpy +sUb +lvr +uEm +qvn +jsm +aAI +cDb +iAw +tPy +jvZ +gJT +trC +trC +trC +trC +trC +ykP +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(159,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +gFe +quX +vDk +vDk +sjk +rzA +bXu +bXu +bXu +bXu +xji +xji +rzA +aux +rzA +eGq +mZJ +wgh +aTk +hIg +oWT +rqi +rVD +rVD +xxE +dra +nTH +rVD +rVD +vjc +hcF +hjg +hjg +xrj +hjg +ybZ +hcF +pbz +suG +suG +jUB +bcm +gym +gym +gym +bAO +iUM +ipX +aSK +aSK +lmR +mFu +xIe +gIt +szU +iUM +wpX +mgF +koI +jmG +jmG +fsj +ina +koI +jmG +qId +cVX +jmG +mPx +jmG +ufi +jmG +fsj +jfH +bxP +ama +vUQ +rTf +wih +bnN +nEQ +ciQ +rQP +sLA +sEr +gym +gym +gym +gym +kVG +kVG +hwA +pNg +mvZ +knd +knd +dnx +ncB +sud +umn +kVG +lKl +tPs +xSL +bRe +qwD +cDb +cIR +dhr +eEs +sXb +moJ +twV +hyh +hyh +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(160,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +pRY +pOK +rqZ +vba +dbD +rzA +eec +bnD +mTd +bXu +gmj +tTw +rzA +eQY +rzA +mZJ +qke +wgh +aTk +wdz +xgW +vgE +eDs +nnw +vsB +dwF +aJF +khZ +rVD +rVD +dPx +rIL +azZ +fCx +azZ +eeu +dPx +suG +suG +tSA +otn +poM +gJT +gJT +gJT +imu +iUM +iUM +uBn +yjf +isy +wAs +vnw +gIt +ggd +iUM +hzH +wkC +fvQ +ngp +nsy +oQs +ina +uqH +krC +laR +iCd +xuX +iCd +xuX +iCd +cad +neY +gbM +rtK +qld +unf +kBp +fHP +rUg +gCL +mpm +odE +sLA +cxC +gym +gym +gym +gym +gym +kVG +kVG +kVG +kVG +kVG +viL +kVG +kVG +kVG +bBZ +kVG +dKW +bbn +fBo +bJA +qwD +rZX +fpK +tPy +jvZ +gJT +cYz +tFo +jKj +bZj +trC +gJT +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(161,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +krF +iIp +lfo +lel +tdk +rzA +cWi +mpB +acM +tIq +jdV +iGB +rzA +jZc +rzA +lpM +tgm +wgh +aTk +wFP +pjg +vgE +eDs +nnw +umd +oEj +aRg +vhO +eVd +rVD +tyF +iee +ybd +riE +ybd +qYN +wqO +suG +nHy +awh +gkA +poM +gym +gym +gym +gym +gJT +iUM +iUM +iUM +isy +bAC +fDa +kwZ +qdl +isy +jcT +cdf +oeG +eFd +eFd +fAM +mbk +fAM +eFd +eFd +iCd +pzp +sEQ +pzp +xuX +eOx +nFs +jfH +rEy +iXk +iXk +fsl +iXk +iXk +iXk +hVo +iXk +iXk +gJT +gym +gym +gym +gym +gym +gym +gym +kVG +pYQ +qwM +pBm +rVn +kPV +vAj +jFN +yhB +rTS +nrn +fBo +yfj +uqd +oQB +nGV +jjU +dEt +pZG +rFc +irE +lfs +hyh +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(162,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +rzA +rzA +hJT +rzA +rzA +rzA +brG +bXu +brG +bXu +koC +sqo +qDS +oxv +rzA +lPv +pxv +wgh +aTk +hIg +lXJ +mQd +rVD +rVD +tYf +oXv +bXt +fUu +nJR +rVD +ixC +ril +pLG +ijW +ril +ril +tzB +suG +etx +gUI +bcm +bcm +gym +gym +gym +gym +gym +gJT +imu +gJT +isy +isy +isy +isy +isy +eFd +eFd +dFs +eFd +eFd +bDU +ocC +epY +bmk +gzz +eFd +jpF +aym +aVA +spI +sjs +fXc +fXc +xWS +dUz +iXk +sPP +oWu +xBI +bdG +cnx +alo +cnL +iXk +gym +gym +gym +gym +gym +gym +gym +gym +kVG +gQJ +pWS +xGX +aaH +kwR +wtq +dmH +kck +iqp +oBL +aBd +qwD +qwD +qBJ +emv +tPy +jvZ +gJT +trC +trC +trC +trC +trC +ykP +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(163,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +vNo +gpA +tbq +eMg +fpM +rzA +euH +ylX +wve +wuH +fdH +vNO +ftw +rmW +dfh +iNh +nVE +hLU +fKA +gLI +pSx +mwF +nnw +wvB +eaq +srN +uoE +oTH +tcL +rVD +cyk +oCE +ybd +ril +ybd +crc +iVp +suG +eBo +agR +poM +qRL +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +eFd +vhP +hkW +pPa +eFd +vPj +wLT +qKN +qNo +veS +eFd +riV +hgn +lyF +jQE +xuX +opF +cTU +jfH +gcI +iXk +oJS +dRC +lzR +bvi +hxK +hQD +oDe +iXk +gym +gym +gym +gym +gym +gym +gym +gym +kVG +uco +kCO +dEF +aVL +vXN +vAj +vNS +fAu +spj +lYN +cXn +xzd +gCv +bmn +meJ +npR +eEs +sXb +moJ +ahl +mlu +mlu +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(164,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +sQt +vwb +tbq +ugW +wlL +yei +sqf +hVs +tiN +qmm +iKB +nzp +kPz +xzC +iBc +bPZ +aih +wEj +pTW +afI +tiO +tiO +rVD +hss +wTQ +rlj +xSu +sPU +jpi +rVD +rVD +iwo +sdR +rQL +sdR +bhf +suG +suG +duT +fQx +poM +ocH +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +eFd +htp +npG +tDQ +fAM +kzf +ihR +eUN +wcf +bxz +jFy +mNJ +tbI +wtt +jQE +rCU +rYU +pVH +jfH +fdf +qkc +asC +rXh +eKY +iXk +kmx +tiI +tuM +iXk +gym +gym +gym +gym +gym +gym +gym +gym +kVG +kVG +kVG +kVG +kVG +kVG +kVG +iwh +iwh +pvN +oBL +aBd +qwD +qwD +amD +wXN +tPy +jvZ +gJT +cYz +yeu +mlu +xvl +trC +gJT +ihJ +ykP +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(165,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +hLp +szW +mnR +qIu +lRi +sBr +kZa +fMp +uLX +uyR +uve +umN +rbf +agP +rzA +tiO +tiO +ekX +dSH +tlg +tiO +gym +jpi +jpi +jpi +ntT +vIn +owm +jpi +tLG +rVD +rVD +rVD +rVD +rVD +rVD +suG +nTz +bNN +mQn +bcm +bcm +bcm +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +eFd +hsF +xLW +pAd +mih +kEN +oil +jTi +rpo +iBl +qwR +blp +jCR +jAc +aba +hrf +oQA +tDX +mzz +qnr +wZT +hro +mij +vgD +jNY +oIg +hQD +cUD +iXk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +mEv +oBL +uKq +kgj +hXl +cvL +vlb +drc +vsh +neJ +ums +vyN +atl +mlu +trC +gJT +dew +gJT +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(166,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +eBj +jLb +xMX +cHZ +bPk +uWn +lar +aKA +oRZ +aIo +hnk +bNI +iKB +oGG +rzA +gJT +tiO +bdS +tiO +bdS +tiO +gJT +gJT +jpi +wed +bgo +dra +pHh +gfe +lwe +wwC +kEE +kKq +aAE +bjv +wwC +rSF +qbJ +qbJ +rot +bcm +tPF +bcm +die +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +eFd +mKK +bBf +uXL +fAM +oyK +vSo +pNK +koW +obc +jFy +vnV +sxX +pAf +jQE +tAv +nqM +pVH +mgF +bxP +qkc +xon +oSc +dBu +iXk +dlv +mkP +oPU +iXk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +mEv +drw +xzd +xzd +klu +tjs +qJt +iKH +iwh +gJT +trC +trC +trC +trC +trC +gJT +ihJ +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(167,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +rzA +lsL +hgw +xMX +eqN +jiX +rzA +mgC +wFd +fBP +qyC +mmL +vjF +cyT +ilu +rzA +gym +gJT +gJT +gym +gym +gym +gym +gym +jpi +uHI +lrD +ycU +xiu +pyt +vwX +hwe +ran +bEM +iqk +iqk +taM +xBE +bqq +aYX +wke +vWo +mri +rvS +egQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +eFd +ixl +egd +hrA +eFd +qGI +dWK +rYP +sVR +qAO +eFd +ivB +hgn +fNy +jQE +xuX +lbk +chw +mgF +dUz +iXk +ikV +lgT +sPO +iXk +iXk +xkT +iXk +iXk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +iwh +oSW +vWi +oTb +xbU +mxS +gSd +mHB +mSY +acT +gJT +gJT +gJT +gJT +gJT +gJT +gJT +gym +dew +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(168,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dfy +dfy +dfy +dfy +usf +dfy +dfy +dfy +xED +ecj +mzh +kFx +rzA +rzA +sSg +sSg +rzA +gJT +gJT +gym +gym +gym +gym +gym +gym +jpi +hAQ +exx +qIs +oUB +gfe +emZ +wwC +wEV +jsn +kHa +rDe +wwC +cAG +bGb +oBM +oJZ +bcm +aqT +bcm +kDB +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +eFd +eFd +eFd +eFd +eFd +aIC +guF +uUF +jAd +erT +eFd +iSn +gMR +iJe +hUX +dhI +xPE +xPE +lso +hyc +iXk +sTA +dUd +vJn +iXk +oZP +kTf +jxE +iXk +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +iwh +iwh +sNY +iwh +iwh +iwh +iwh +iwh +gym +ihJ +dew +ihJ +dew +ihJ +gJT +ihJ +gJT +dew +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(169,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dfy +iNl +dFG +mwp +riU +wMd +bQY +ltn +jzv +jGQ +lxl +wIw +rbP +gJT +gym +dCk +gJT +gym +gym +gym +gym +gym +gym +gym +gym +jpi +jpi +owm +kna +owm +jpi +xcq +lGf +lGf +lGf +lGf +lGf +lGf +lBS +kCR +lBS +lGf +bcm +bcm +bcm +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +eFd +eFd +iqU +mup +qyn +eFd +eFd +iCd +pzp +xuS +pzp +xuX +ouf +rZl +ina +ebe +iXk +qkc +qkc +qkc +iXk +kbE +nPe +fYu +iXk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +pzH +lzP +sjx +iwh +gym +gym +gym +gym +gym +gJT +ykP +gJT +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(170,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dfy +goM +dfy +tCN +sGY +cId +kII +dfy +xED +hjG +aor +kFx +gJT +dCk +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +jpi +eSb +evC +tQM +jpi +jpi +lGf +tLz +kBA +bip +ewa +caT +fnl +lHs +dSq +afP +gll +lGf +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +eFd +eFd +eFd +eFd +eFd +gym +iCd +xuX +iCd +xuX +iCd +pvl +alf +kyX +pvl +pvl +ylG +nDm +lHj +iXk +iXk +iXk +iXk +iXk +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +iwh +iwh +hei +iwh +iwh +gym +gym +gym +gym +gym +dew +ihJ +dew +gJT +ihJ +ihJ +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(171,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dfy +eZQ +vXo +tZi +kmP +gor +aes +dfy +lRU +tMl +qNZ +kFx +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +jpi +jpi +rMC +jpi +jpi +gJT +lGf +dZr +tUN +bGf +iSy +kFe +fNv +ftJ +iUp +hEB +tBN +oSM +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +pvl +gbe +xvD +kRb +sSq +dtt +rmx +ptB +vkz +pvl +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +xqy +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(172,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +dfy +lzm +dfy +jBy +jBy +jBy +jBy +dfy +kIl +dmz +kIl +kFx +dCk +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +xqy +gJT +gym +gym +lGf +pPM +kDL +sWb +qFj +rcA +tlk +nAy +vbl +hxM +mpz +oSM +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +pvl +gjb +ohG +rdY +teV +rAC +fOo +vCf +sHL +pvl +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(173,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lfy +gym +lfy +gym +gym +gym +gym +dfy +iZb +iZb +iZb +kFx +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +mAU +hAA +gWO +aCr +vUV +sjc +lHs +cxN +qrT +eDA +lGf +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +pvl +qvD +lDI +xgq +rfT +dpN +gyN +eHo +cYg +pvl +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(174,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +vUV +caT +lGf +lGf +lGf +lBS +kCR +lBS +lGf +lGf +lGf +lGf +lGf +lGf +gym +gym +gym +gym +gym +gJT +oPt +iPG +fsQ +bDP +jTu +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +pvl +pYy +pvl +pYy +pvl +pvl +pvl +pvl +pvl +pvl +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(175,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +lGf +hiV +ltt +lGf +wgp +vaX +aui +bzq +vsO +xDl +lGf +cux +hXC +ovA +lGf +gym +gym +gym +gym +fsQ +sIZ +sIZ +sIZ +sIZ +sIZ +sIZ +sIZ +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(176,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +iIt +mlX +wUR +lGf +aJE +dzk +qum +mjg +rTM +jpD +mBM +iBR +hsT +hpY +lGf +lGf +gym +gym +gJT +sIZ +sIZ +kfr +wMq +fdp +stu +kIS +sIZ +sIZ +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(177,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +dCk +gJT +gJT +gJT +dCk +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oSM +eym +iOz +jzu +nGR +oHF +bIQ +mQz +gRj +dun +gPR +lGf +gqf +sOf +ntt +oxd +lGf +gym +gym +fsQ +sIZ +meS +pdD +aLt +yeH +aLt +pdD +kWO +sIZ +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(178,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oSM +fKw +cFC +iGQ +oOS +dQY +eTP +aeM +aeM +aeM +wOF +aeM +aeM +kgO +dBT +oeu +lGf +gym +gym +gJT +sIZ +hkO +kNu +xUj +doo +wEk +vNk +hkD +sIZ +gJT +gym +gym +gym +gym +gym +gym +gym +gJT +egQ +gJT +egQ +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(179,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +oSM +gZP +ikf +uuK +nGR +dVR +rRd +aeM +iik +tzG +sZD +kKR +aeM +aeM +aeM +aeM +aeM +gym +wBq +wBq +wBq +wBq +xyJ +szi +isA +szi +eOq +wBq +wBq +wBq +wBq +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(180,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +oYg +hSA +bWa +lGf +imc +aeM +aeM +epa +ybQ +wiT +ahu +aeM +tmd +vEu +tmd +aeM +wBq +wBq +uQG +mpQ +rKa +usT +kfA +qRh +kfA +ngm +rKa +bdU +aHq +wBq +wBq +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(181,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lfy +gJT +lfy +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +lGf +sqI +ezG +lGf +wHP +aeM +vvD +vjj +rye +hBv +wYE +tiv +eDF +eDF +mCn +sWH +wBq +pem +baE +kfA +sir +rjQ +uqU +sxZ +nRL +qCb +kZT +iok +bUG +pem +wBq +gym +gym +gym +gym +gJT +tNV +gJT +tNV +gJT +tNV +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(182,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +caT +vUV +lGf +gQX +aeM +kGn +tsJ +reX +lWj +kYJ +wUO +pFU +fQA +ycp +lnv +wBq +ipg +aLt +aLt +vDz +xFD +wTK +cvc +uzX +elI +cmI +aLt +axc +hOj +wBq +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gJT +kCq +kCq +kCq +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(183,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +bIM +aef +lGf +aDk +aeM +arn +pxA +vot +ptg +kKC +aeM +uWR +oQI +rdW +hVx +wBq +iFQ +aLt +aLt +kNu +eEQ +wAN +anT +sdY +sNe +vNk +aLt +axc +fZT +wBq +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(184,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +ibr +wMZ +mkN +iFz +aeM +sDO +poy +quD +fpy +vMQ +dfC +kyk +xSD +npE +jvQ +wBq +pem +xta +iht +jcJ +aUG +kWn +kzw +oCQ +rzi +oKP +uVi +esC +pem +wBq +gym +gym +gym +gym +gym +gJT +fsQ +gJT +fsQ +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +tGr +tGr +tGr +tGr +tGr +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(185,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +dCk +gJT +gJT +gJT +dCk +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +iLK +cMe +lGf +tFH +aeM +rkb +jzL +saI +qHX +bEY +tiv +lGo +eZs +pVP +sZr +wBq +wBq +oVl +qYH +wBq +wBq +doI +fhm +vcg +wBq +wBq +vOu +tte +lAs +lAs +lAs +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bNG +bNG +bNG +bNG +tGr +hfp +xRC +apx +tGr +tip +tip +tip +tip +gym +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(186,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +ehp +gym +gym +gym +gym +gym +gym +gym +lGf +lGf +lGf +lGf +sRf +aeM +aeM +xxd +rda +fpT +lNe +aeM +pOi +eZs +hiB +lAs +lAs +lAs +lAs +lAs +lAs +eIS +xMo +rzH +fxH +vSJ +lAs +lAs +pIV +lAs +tTN +lAs +gym +gym +gym +gym +gym +gJT +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +bNG +bNG +aAt +rRY +bNG +vOZ +eAc +xNO +xle +wzI +tip +wsI +eRX +tip +tip +tip +tip +tip +gym +gym +gym +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(187,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +fOQ +kZD +rMK +aeM +dZU +ozG +omI +qvv +aeM +tiv +phk +tiv +lAs +jlS +jzP +cus +qDA +lAs +uca +cRE +eVz +hym +qyd +lAs +vbb +jlS +cuQ +bUs +lAs +mqK +mqK +mqK +mqK +gym +gJT +gym +gJT +gym +gym +gym +hSu +qbx +tHu +gym +gym +gym +hSu +qbx +tHu +gym +gym +bNG +xKK +qPR +ics +iPF +kLz +bui +exV +joB +dXP +xXP +vvM +hDf +dSN +lIG +goO +goO +tip +gym +gJT +gJT +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(188,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +pEY +dQY +pDQ +aeM +aeM +aeM +aeM +aeM +aeM +cjK +dDz +afz +lAs +dEJ +lAs +lAs +jlS +dEJ +jcL +drN +gcc +qnn +noa +lAs +jYm +lAs +lAs +dEJ +lAs +ttO +ddP +cOG +mqK +mqK +fyL +mqK +fyL +mqK +gym +gym +lNr +igk +qvZ +hSu +aGa +tHu +lNr +igk +qvZ +gym +gym +bNG +jKN +pbb +jUM +bNG +kQP +xpn +owD +adg +uKy +tip +xwP +bXh +tip +tip +tip +tip +tip +uhM +uhM +gym +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(189,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lfy +gJT +lfy +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lGf +aCg +kZD +dQY +oHF +mqK +hdx +hwS +xHN +xHN +mfR +sXt +xBk +ykN +hdm +bBV +lAs +fDH +lAs +mqK +fTz +tCY +fyL +mqK +lAs +qec +lAs +phX +pIl +bYW +hHK +hHK +hHK +hHK +vvQ +vQy +tgM +ovI +fyL +hSu +aGa +hdY +fsQ +csb +hdY +fsQ +csb +hdY +fsQ +csb +sPf +tHu +bNG +rxr +pCm +kzM +bNG +uuD +tGr +epe +tGr +uuD +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +gJT +gJT +gJT +gJT +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(190,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +gwv +gwv +gwv +gwv +kZD +mqK +qJs +kwb +kwb +fYl +mxG +uUo +mxG +fYl +eUD +eXS +lAs +jYe +lAs +pPk +oZR +sVf +jxh +bma +lAs +jqy +lAs +eXS +wkD +hLv +aSX +mxG +vgr +mxG +aSX +fnJ +aSX +tjD +mqK +dwc +fsQ +htJ +hWD +tFb +fsQ +igk +fsQ +htJ +hWD +tFb +fsQ +mHj +bNG +bNG +sZM +bNG +bNG +dKr +tGr +qCG +tGr +dKr +uhM +uhM +uhM +uhM +sRX +uhM +qAg +uhM +sRX +uhM +uhM +uhM +gym +gJT +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(191,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +bYK +cmg +qAl +gwv +dQY +pHL +rDy +kwb +vup +fgj +yjN +axv +vIi +aYs +kQJ +wxU +lAs +lAs +lAs +vUG +qDf +fRK +huR +sLi +lAs +lAs +lAs +gEV +oQj +qJZ +vtd +axv +twj +nlI +cWu +tGZ +viF +lpp +fyL +jYS +cJA +dif +fsQ +qin +dif +fsQ +qin +dif +fsQ +qin +hfr +fYT +emU +gRd +uYZ +bnC +emU +kxn +kxn +qPZ +kxn +kxn +kxn +gAC +vaw +vWq +uCV +kkX +reZ +fTC +uCV +qOm +uhM +uhM +uhM +gJT +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(192,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +gwv +bNF +wmK +hVv +gwv +gwv +mqK +lTM +fnY +fFC +mqK +mqK +mqK +mqK +fyL +dZf +fyL +mqK +gBU +oTQ +iRu +cQH +ehw +fnu +uRf +wFX +lff +mqK +fyL +qEH +fyL +mqK +mqK +mqK +mqK +ozR +qqg +pii +oit +mqK +mqK +gym +lNr +igk +qvZ +jYS +cJA +xac +lNr +igk +qvZ +gym +emU +jft +fCS +mBd +oIr +wNM +vPH +oZg +aUa +sHR +dlR +vPH +sCu +tvt +per +iWi +dUg +lME +dUg +lPx +qXZ +uhM +uhM +uhM +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(193,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +dCk +gJT +gJT +gJT +dCk +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +bRW +eJN +mMZ +pZo +lMc +iHK +dbg +mfR +mxG +jyN +mqK +mSJ +dOy +mqK +lQe +dHo +rrS +mjZ +iVe +iVe +iVe +vez +mkF +rwV +tOx +qTD +qoI +pGs +qkb +fRV +rGQ +mqK +iIr +eSQ +mqK +glR +psK +aAO +geR +jUR +dIf +jCX +kEV +mOH +sRa +jCX +jCX +jCX +kEV +mOH +sRa +jCX +lEI +eas +tZk +hIo +qVz +lNB +kxn +aCE +lRA +wQO +coN +kxn +hcy +wKB +uCV +qig +uhM +uhM +uhM +eJb +jRq +ylT +uhM +uhM +uhM +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(194,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +efQ +lWG +nKQ +tHv +msS +kQe +igS +rsJ +sZz +svc +ndX +hrR +tfR +iPR +ika +hCf +gmY +mxG +kPx +mxG +hLv +bKg +xDs +vaL +hLv +mxG +kPx +mxG +gmY +vaL +dLg +qoN +svD +hrR +cZG +dKA +apz +tYB +sur +fjz +vvU +tFz +adn +fbi +adn +kAO +hFI +sIh +adn +fbi +adn +tFz +lZs +gRM +kEi +hWJ +fXP +btz +kDl +eGr +wHR +nDN +ulD +oQe +geg +xmt +eCJ +gpH +uhM +dbJ +uwC +fZk +jbp +tdc +uhM +uhM +uhM +gJT +gJT +gJT +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(195,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +mhI +vDC +dEs +uUg +tgh +gwv +tak +tkL +mxG +pmg +mqK +hhf +eGW +mqK +bil +eld +qJZ +tlW +fby +fby +fby +xFv +qax +lEj +fby +fby +iIl +pok +wyy +oQj +jbW +mqK +hNs +eGW +mqK +vXs +grY +cEV +gRR +rUy +dIf +jCX +uyY +fFy +dMD +jCX +jCX +jCX +uyY +fFy +dMD +jCX +lEI +eTd +hqI +kjS +iPA +eeg +kxn +xVl +uiU +pzO +owZ +kxn +qfB +pqi +uCV +guc +uhM +uhM +uhM +lPF +fqA +hxO +uhM +uhM +uhM +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(196,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +gwv +tSr +pLE +uVF +gwv +gwv +mqK +xPS +huM +fFC +mqK +mqK +mqK +mqK +fyL +qEH +fyL +mqK +cNk +ozF +oKU +pHV +ehw +fnu +fzv +jLP +brL +mqK +fyL +qEH +fyL +mqK +mqK +mqK +mqK +avp +esU +twI +bFH +mqK +mqK +gym +lNr +igk +qvZ +hSu +aGa +tHu +lNr +igk +qvZ +gym +emU +hWM +hSs +jbw +tWW +hyb +vPH +qfy +cEO +auJ +uKL +vPH +krr +tvt +gBy +sbE +gCf +aYA +gCf +jhD +xzu +uhM +uhM +uhM +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(197,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lfy +gJT +lfy +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +tpS +cmg +xGg +gwv +gym +mqK +rDy +kwb +sGQ +elZ +mXO +pQT +rme +lAy +qjl +uLI +uak +uak +uak +dWH +igZ +ocN +kBH +caj +uak +uak +uak +leq +uLP +wMP +rhL +yjp +vjs +ctp +pir +tMP +lTT +jZK +fyL +hSu +aGa +hdY +fsQ +csb +hdY +fsQ +csb +hdY +fsQ +csb +sPf +pYp +emU +hFC +xiZ +ugF +emU +kxn +kxn +brk +kxn +kxn +kxn +ttK +eIQ +nAc +uCV +hiE +efH +mBm +uCV +qay +uhM +uhM +uhM +gJT +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(198,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gwv +gwv +gwv +gwv +gwv +gJT +mqK +qJs +kwb +kwb +fYl +mxG +ghg +mxG +fYl +auE +eXS +uak +fZW +uak +pcS +wgJ +gqH +wgJ +rmG +uak +qga +uak +eXS +wkD +oIq +aSX +mxG +vgr +mxG +aSX +ldg +aSX +tjD +mqK +dwc +fsQ +htJ +hWD +tFb +fsQ +igk +fsQ +htJ +hWD +tFb +fsQ +mHj +nXA +nXA +aoK +nXA +nXA +uXl +fjo +cPR +wXm +uZE +uhM +uhM +uhM +uhM +sRX +uhM +msQ +uhM +sRX +uhM +uhM +uhM +gym +gJT +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(199,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +mqK +stl +fEC +iar +uWV +tkL +rsJ +pJi +iCG +oIN +bQu +uak +vMO +uak +uak +vex +szN +wiI +uak +uak +ehb +uak +azP +jNr +fva +wJv +lZf +lZf +lZf +luy +yaC +gep +cIp +fyL +jYS +cJA +dif +fsQ +qin +dif +fsQ +qin +dif +fsQ +qin +hfr +xac +nXA +aXs +atM +ooz +nXA +jmY +fjo +dbt +fjo +fyK +tip +tip +tip +tip +uhM +uhM +uhM +uhM +uhM +uhM +uhM +uhM +gJT +gJT +gJT +gJT +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(200,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +irx +irx +irx +irx +irx +irx +lRg +ncW +usz +lAs +dEJ +lAs +lAs +esF +tgu +uak +vzv +tXA +aub +jXm +baH +usD +lAs +lAs +dEJ +lAs +wYg +gom +iXK +mqK +mqK +fyL +mqK +fyL +mqK +gym +gym +lNr +igk +qvZ +jYS +cJA +xac +lNr +igk +qvZ +gym +gym +nXA +cci +ixd +iom +nXA +wvP +bus +epc +thO +oMK +tip +xwP +oIO +tip +tip +tip +tip +tip +uhM +uhM +gym +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(201,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +dCk +gJT +gJT +gJT +dCk +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +yfi +uTZ +gpL +rRA +gQu +irx +ccC +uEb +ccC +lAs +soU +jlS +fXC +lAi +sVa +uak +gUi +fci +roc +gIe +eWA +hmd +dEJ +jlS +meR +lAs +mqK +mqK +mqK +mqK +gym +gym +gym +gym +gym +gym +gym +jYS +fug +xac +gym +gym +gym +jYS +fug +xac +gym +gym +nXA +ckG +hWT +oEt +oYX +iTj +dCs +xkW +cSD +iDd +joL +doN +doN +kzJ +rBm +goO +goO +tip +gym +gJT +gJT +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(202,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +irx +krS +lJd +kLP +czQ +krS +rKA +njf +gCx +qqi +lAs +lAs +lAs +lAs +bQT +pmZ +uak +vzv +gKk +obV +jXm +uiF +gdv +lAs +lAs +lAs +lAs +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nXA +nXA +qEL +jqQ +nXA +lXz +wyl +tLx +rCf +agS +tip +hRt +mSd +tip +tip +tip +tip +tip +gym +gym +gym +gJT +gym +gym +gym +kCq +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(203,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +woC +fNa +uKJ +jke +iTr +oOX +irx +rEV +exU +oMh +uak +ofE +dzE +uak +rmS +uak +uak +iEO +jXm +tHj +uak +uak +kMN +uak +uOD +luC +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +nXA +nXA +nXA +nXA +fjo +oxS +plo +hLt +fjo +tip +tip +tip +tip +gym +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +gJT +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(204,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +grJ +nhl +rbI +gnZ +vlM +gNE +pTC +dsB +prl +kWZ +uak +xPW +jnN +iLH +slP +xSZ +kOZ +riP +riP +riP +tXz +tTR +maL +wIy +fPy +keP +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +fjo +fjo +fjo +fjo +fjo +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(205,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +lfy +gJT +lfy +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +woC +fNa +tgE +rop +hNt +jUX +irx +kpm +kSy +hAH +uak +vjH +iPp +xli +pBH +iiS +bJg +qZj +gml +rVg +bJg +sTG +jGo +bVR +dqT +iKT +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +gym +gym +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(206,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +irx +amU +kBX +dFl +cte +amU +rKA +gAY +vdw +ewE +uak +uak +rwF +fxZ +qYL +wFF +nhT +sou +fAX +umI +icM +lBP +ycV +amj +tdQ +uak +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gJT +kCq +kCq +kCq +gJT +kCq +kCq +kCq +kCq +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(207,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +gym +gym +gym +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +tEn +jPI +pWA +egi +nYF +irx +ccC +ccC +ccC +uak +uak +llQ +pHI +tsk +nUp +lKW +jgs +qBL +dhj +aBf +djh +ajx +icu +jgO +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gJT +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(208,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gJT +hJX +ucf +hJX +gJT +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +irx +irx +irx +irx +irx +irx +irx +gym +gym +gym +gym +uak +azY +pNr +aoh +vNa +bJg +puI +dON +wba +bJg +lTG +pTX +tpf +haF +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(209,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +kNp +hJX +faj +hJX +kNp +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +uak +uak +vJP +xJf +qYL +hNY +mHO +sbo +mHO +hNY +ycV +gtL +iIx +uak +uak +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(210,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +eoO +qSf +nJA +hOV +eoO +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +kJC +xUr +rNB +fpG +shW +lre +bUW +aJO +shW +jsP +cUj +kvB +uPX +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(211,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +hJX +bEJ +ebZ +kSP +abz +wez +hJX +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +kJC +mZl +rfV +nVq +kJC +ymd +nGk +jqY +kJC +hwj +ycD +kCI +kJC +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(212,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +kkf +ouR +hLG +gjh +ajU +aGz +ioC +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +kJC +kJC +kJC +kJC +kJC +yjX +wyw +nkU +kJC +kJC +kJC +kJC +kJC +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(213,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +hJX +oJd +plr +vcR +kEf +cLw +hJX +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +fsQ +gJT +kJC +kJC +kJC +kJC +kJC +gJT +fsQ +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(214,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +eoO +nML +bkI +nHk +eoO +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gJT +gJT +fsQ +gJT +gJT +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(215,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +kNp +hJX +kvJ +hJX +kNp +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(216,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +hJX +eoO +hJX +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gJT +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(217,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gJT +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(218,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +fsQ +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(219,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(220,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(221,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(222,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(223,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(224,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(225,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(226,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(227,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(228,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(229,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(230,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(231,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(232,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(233,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(234,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(235,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(236,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(237,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(238,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(239,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(240,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(241,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(242,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(243,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(244,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(245,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(246,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(247,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(248,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(249,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(250,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(251,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(252,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(253,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(254,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} +(255,1,1) = {" +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +gym +"} + +(1,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(2,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(3,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(4,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(5,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(6,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(7,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(8,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(9,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(10,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(11,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(12,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(13,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(14,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(15,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(16,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(17,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(18,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(19,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(20,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(21,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(22,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(23,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(24,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(25,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(26,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(27,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(28,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yhl +yhl +yhl +yhl +yhl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(29,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yhl +aUu +cfV +byG +yhl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(30,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yhl +liQ +nsA +eeL +yhl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(31,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pPx +veJ +nnG +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +oNf +pCa +yhl +yhl +fxx +yhl +yhl +pCa +oNf +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(32,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +igh +hyw +xqz +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yhl +yhl +yhl +yhl +yhl +aUx +srH +qHj +yhl +wjK +wjK +wjK +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(33,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +vej +qdw +ted +nPV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pyZ +nln +ghb +yhl +wnh +gNm +fGo +hyU +yhl +lCt +thf +wjK +wjK +oNf +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(34,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +igh +oKM +ooJ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +yhl +yhl +kBI +dOw +dBF +tlb +wio +fGo +kaT +jIo +eLb +bMt +ffC +wjK +ewF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(35,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +igh +gtZ +nnG +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +poI +kHq +ulA +uwq +rPl +yfa +fGo +dHm +fGo +rZS +oNT +bvV +dHU +wjK +mPw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(36,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mcq +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +igh +igh +oHy +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +pCa +pCa +poI +nSZ +sgz +odj +dBF +cpl +tSN +fGo +cyu +icw +ufP +ogB +mJl +wjK +bKX +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(37,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +gtn +nPV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +poI +sfQ +bKA +pEt +yhl +wnh +oRh +fGo +xox +yhl +uLZ +hQb +wjK +wjK +oNf +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(38,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +nnG +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +yhl +yhl +yhl +yhl +yhl +yhl +iWC +fGo +aZE +yhl +wjK +wjK +wjK +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(39,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yhl +rgO +dBF +sWB +eVf +czH +xgY +klD +yhl +pCa +oNf +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(40,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +xka +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gTL +gTL +gTL +pLl +gTL +gTL +yhl +yhl +trg +yhl +yhl +gTL +gTL +gTL +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(41,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gTL +nog +qbE +njr +qKs +xWZ +jps +rDU +ogr +bOw +aHc +qQa +qQa +dXn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(42,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gTL +dac +nZu +pDZ +nZu +ruD +jRD +dHw +bdn +qET +oGq +qQa +qQa +dXn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(43,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gTL +iBD +qMu +qMu +qMu +wOS +jps +ieo +tIu +hux +jps +qQa +qQa +dXn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(44,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +gTL +gTL +gTL +jVm +aII +eKi +gTL +gTL +gTL +bXa +gTL +gTL +gTL +bLu +bLu +bLu +nlZ +nlZ +bLu +bLu +bLu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(45,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dXn +dZQ +ygj +pCM +lrr +owf +kuP +kQs +gTL +qiJ +nHe +mFr +tgW +bLu +ltq +mZd +qDv +tDJ +pOR +lry +bLu +bLu +bLu +bLu +bLu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(46,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +pCa +pCa +dXn +gXd +nZu +fDc +fPj +tPN +nZu +rta +bVO +ajd +tvK +eTo +kcz +bLu +khN +vwF +jVr +mOS +caZ +qZT +bLu +jCp +wLD +wGt +bLu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +pCa +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(47,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +nPV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dXn +hgi +syT +fUN +scf +fUN +jAM +fQQ +wEM +gBI +oqu +dvo +tgW +bLu +bLu +vOE +qAa +ryL +lzi +bLu +bLu +ovj +ibp +ovj +bLu +bLu +bLu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(48,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +gtn +csV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oNf +pCa +gTL +gTL +gTL +wzL +rym +elv +bLu +fEG +bLu +fXS +fuh +kAk +bLu +bLu +wGM +xyN +xae +eol +flF +auI +xae +xyN +eol +xyN +dgM +euX +bLu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +pCa +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(49,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +xMU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +oOb +igQ +gTL +afC +iSZ +tPX +bLu +eqs +bLu +bLu +kmv +bLu +bLu +gRX +nva +gUP +bLu +bLu +bLu +bLu +bLu +bLu +lAw +dgG +aIr +iMo +bLu +bLu +bLu +bLu +txW +txW +txW +txW +txW +txW +bLu +nlZ +bLu +nlZ +bLu +nlZ +pih +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(50,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +nPV +xka +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +igh +igh +igh +txW +txW +txW +txW +lHF +aVX +nPV +gTL +tmZ +utS +leB +kxV +qCc +ojw +wGM +uoq +wJM +xae +eol +spf +bLu +bLu +mgn +bNq +nsa +taK +bLu +bLu +fHx +vKB +ojB +bLu +rFu +fsg +bLu +bLu +nlZ +bLu +bLu +bLu +bLu +bLu +bnu +gwS +aoQ +vFQ +hcv +pih +pih +pih +pih +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(51,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +igh +pkl +txW +txW +txW +txW +txW +txW +txW +igh +gtn +txW +txW +txW +txW +txW +txW +txW +txW +nPV +gtn +igh +igh +gtn +igh +txW +txW +txW +txW +txW +oOb +nPV +igQ +gTL +gTL +gTL +gTL +bLu +bLu +hOL +mNv +jVC +psl +vKE +vfd +jmJ +bLu +eFw +fvP +xqt +xqt +fvP +kzF +bLu +iKn +bLu +bJM +bLu +wEW +wUF +bLu +qBc +sBO +uQP +bLu +sgZ +nBZ +vAk +wHT +jga +pcI +aEb +uik +nEG +ptc +cFW +pih +pih +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(52,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +veJ +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +vCC +gtn +gtn +gtn +igh +txW +txW +txW +wFg +lAM +fZZ +qvg +vSN +qvg +kiX +vLs +joK +vLs +bLu +bLu +lng +bLu +bLu +wTe +bLu +ujr +bLu +jFf +gQC +fvP +fvP +jPz +xCu +bLu +eBW +bLu +qcm +xyN +aQG +jXc +ulJ +mrb +lkt +hoE +ulJ +rmu +yhb +bLu +bLu +bLu +bLu +bLu +rOz +pih +msr +cxJ +kWU +pih +pih +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(53,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +nPV +gtn +gtn +igh +txW +txW +txW +txW +txW +txW +txW +nPV +xka +igh +igh +txW +txW +txW +tLm +ome +uty +wyv +cRl +vSN +igQ +kiX +mCQ +fYS +heA +qbj +vwm +pSE +wwJ +bLu +bLu +bLu +rof +naY +oKm +tYt +jQq +nuQ +rAM +lLa +jKL +klt +bLu +bLu +lat +cOl +lat +bLu +dmR +gDT +use +bLu +pEG +dWn +dmW +tfn +bLu +vZZ +bLu +bLu +pih +pih +aEw +ptc +cFW +pih +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(54,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ett +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +xMU +txW +txW +txW +sXU +uty +uty +uty +uiG +xKy +vSN +kiX +nLJ +gxC +pPC +ocg +tNj +pSE +cfL +nnR +pBn +gBe +unA +tWn +tqa +cmj +llo +wKc +fOC +ajW +lgw +wQC +pcq +bLu +uun +sDH +nJT +bLu +bLu +vIF +bLu +bLu +dUK +fHJ +sNa +bLu +bLu +vll +kuF +jII +sQo +pih +pih +etT +cxJ +chy +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(55,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +pCa +pCa +nnZ +uty +hzt +uty +dya +dtb +agJ +kiX +iuL +atG +vEr +czU +pdg +pSE +rHZ +oFO +nvN +gqE +aWa +jvW +fvP +lOA +fen +ruM +dsd +fvP +jvW +hbN +rCi +bLu +egy +eYE +bLu +bLu +fbu +dgj +fPV +bLu +bLu +aRy +bLu +bLu +fvM +bVM +veX +fjG +gRH +eEq +pih +pih +mNy +pih +pCa +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(56,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +sXU +uty +uty +uty +dya +dtb +dtb +kiX +kiX +qdI +qdI +kiX +kiX +jAf +noR +kKe +aOZ +viM +vHB +sDr +tqa +rQo +uGe +uUP +ify +ajW +gGl +hbN +eGv +bLu +mDH +xOa +bLu +hLl +gqq +pLQ +bxK +cox +ctH +bSN +nyM +cxt +qMF +dHj +naJ +uaa +coF +imQ +oAX +pih +pZF +chy +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +lGA +lGA +lGA +lGA +lGA +lGA +lGA +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(57,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +qYX +vjX +uty +dUu +ndj +xKy +dtb +kiX +eQu +sKf +enq +emp +kiX +keE +kiX +kiX +kiX +itj +uVu +fHp +ddh +qyM +vFt +mjI +fHQ +qkq +syw +kfq +itj +bLu +nXt +eQn +bLu +uQl +ajR +cGz +uxI +wQJ +qHd +pzm +hox +rav +pnv +hqL +fAo +bwZ +oNc +uvU +ttv +pih +fNd +chy +pCa +pCa +pCa +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +pCa +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(58,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +txW +gBQ +ewt +eCE +dtb +xKy +agJ +hVc +vFX +kOI +dmT +sTp +jjJ +eny +qkY +hHk +kiX +vaK +ppB +vaK +auW +auW +fsY +ogc +auW +auW +vaK +qUZ +vaK +bLu +bLu +eOb +bLu +tsp +eMU +rtA +xbM +rUZ +ctH +flv +psQ +rDD +qMF +dHO +vWt +iQM +uDp +djG +hPu +pih +jge +chy +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +pCa +txW +txW +bUo +ccy +bUo +txW +txW +pCa +txW +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(59,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +csV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +oOb +dtb +xKy +nPV +hVc +qlJ +hUj +jqK +jCV +oyT +sai +ijk +kiX +kiX +smO +esg +iRW +tIJ +kHc +kHc +kHc +kHc +tAw +wNQ +tXw +krX +tAw +bLu +bLu +bLu +ctH +wSc +pZM +oaq +ctH +ctH +ctH +ctH +ctH +fCy +eBX +wFr +wnH +ubR +hVy +pih +pih +bHl +pih +pCa +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +lGA +txW +eBg +ccy +eBg +txW +bUo +ccy +bUo +txW +eBg +ccy +eBg +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(60,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +igh +igh +xMU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +ewt +gxe +xKy +igQ +nPV +hVc +vhe +dNG +fTW +iHJ +ukS +cMY +sTp +fYn +iLB +opR +dGy +aWc +sXk +kHc +gZn +apS +rkK +kuX +skd +mKa +nPO +maM +axS +mes +gZn +ctH +lQy +lQy +lQy +ctH +dzc +fnL +vdi +ctH +ctH +ctH +ctH +rGB +gRq +pih +pih +kmo +xQV +chy +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +pCa +txW +txW +txW +txW +eBg +ccy +eBg +pCa +bUo +ccy +bUo +pCa +eBg +ccy +eBg +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(61,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +xJO +wZB +pCa +txW +ohU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lAM +aqt +aqt +aqt +cyB +ukF +dtb +dtb +qvg +kiX +kmf +pwV +fMT +hsZ +qyW +cpx +ijm +dYz +tfD +voS +aug +bfO +dcL +lVP +hUF +gqP +yeB +ksP +skd +sdb +nPO +pkG +ogE +gyz +tBt +jMd +pqA +jpj +gYI +ipl +cmA +wkO +glL +jqE +fDu +vdi +ctH +ctH +tZQ +pih +ira +rck +mKH +pih +pCa +txW +txW +txW +txW +pCa +pCa +pCa +pCa +txW +txW +txW +txW +txW +txW +pCa +eBg +ccy +eBg +pCa +bUo +ccy +bUo +pCa +eBg +ccy +eBg +pCa +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(62,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +igh +lsP +odU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xka +sVP +veJ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lHF +wBM +owu +dtb +ukF +ukF +ukF +dtb +kiX +kiX +hVc +kiX +kiX +lPf +cCg +chA +sUO +nQe +cCg +fYn +pHM +bDR +gro +llu +tlz +lVP +aqd +ipa +kBg +rgE +tPW +cBb +pWc +nOz +dJJ +xkr +nAM +jMd +rFa +hSd +vtZ +ilw +avG +wkO +glL +hbX +fVI +cHd +cyn +acm +tKZ +pih +pih +vOs +hDY +jer +gRm +gRm +gRm +pCa +pCa +pCa +txW +txW +txW +txW +txW +rQU +txW +txW +txW +txW +eBg +ccy +eBg +txW +bUo +ccy +bUo +txW +eBg +ccy +eBg +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(63,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +nPV +igh +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +gtn +igh +igM +ydc +txW +txW +txW +txW +txW +pCa +wZB +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vCC +igh +igh +nPV +nPV +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +jbJ +jjf +jjf +dtn +dtb +dtb +kiX +kiX +qns +jDe +gjA +kiX +kiX +oVa +chA +dkl +ujv +dQa +kiX +kiX +sxx +srA +gOB +gSc +joJ +cXK +wfV +rgE +xXv +eVY +xYr +jJo +sKZ +cXK +wfV +gGG +xaL +pzN +hee +hFB +cQZ +avG +wkO +glL +ndP +fVI +cHd +tDY +wDU +cMc +awZ +pih +sLE +dkK +jer +mKt +qBI +gRm +gRm +rQU +txW +txW +txW +rQU +txW +txW +pCa +txW +txW +rQU +txW +eBg +ccy +eBg +txW +txW +uri +txW +txW +eBg +ccy +eBg +txW +txW +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(64,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +pyi +nqD +odU +dYK +txW +txW +txW +txW +txW +pCa +jyf +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +igh +sVP +veJ +txW +txW +txW +txW +kaB +pCa +pCa +mGv +gxe +pIn +uty +uty +dya +ukF +nPV +hVc +nyU +tjE +abI +rbT +iad +hVc +eUa +chA +aEC +jwN +sTp +crH +fGc +hyV +jfd +krM +lPT +mUh +wNQ +dxB +dxB +fHg +tyE +vqa +hfk +iwC +dxB +dxB +krX +xhc +qsQ +xhg +mkq +hoO +xUG +cZk +tpk +ewV +fVI +cHd +bjc +syU +nct +hRY +pih +kWY +jge +chy +kRH +aYC +wux +vzQ +vzQ +vzQ +txW +txW +pCa +txW +txW +pCa +txW +txW +pCa +txW +txW +uri +txW +txW +txW +uri +txW +txW +txW +uri +txW +txW +txW +pCa +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(65,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +csV +xCd +igh +odU +txW +pDm +txW +txW +txW +odU +mMU +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +igh +nPV +txW +txW +txW +txW +txW +txW +txW +yjT +sTL +iwl +bKM +nKs +ndj +rJW +igQ +kiX +xjt +gZB +dzZ +mSp +skB +sgX +fOk +hpA +sUO +qPl +jxg +ibC +nko +tKI +kTz +opw +wbf +aYS +xdp +nkV +hgL +dcW +coY +vbL +mZe +kgm +rwS +iLg +pEX +lrX +pta +bCO +kjT +vXY +hji +mkM +bwu +mkM +lnt +iZV +elj +nAX +nHv +swh +pih +sFM +glG +lVD +dqs +bCo +dVI +gqs +vDf +gyR +riM +twZ +xmH +pvf +riM +wjk +vaG +pvf +ccy +nbL +nbL +nbL +rDP +bQi +rDP +nbL +bQi +rDP +bQi +nbL +nbL +ccy +ccy +tzY +pCa +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(66,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +vYS +odU +hDa +etK +pCa +txW +txW +txW +txW +txW +wZB +igh +gtn +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +lHF +cyB +pIn +uty +uty +dya +ukF +mog +rKr +hVc +kpH +ybx +leP +vxr +cnc +hVc +nPN +chA +aEC +jwN +sTp +crH +rbe +had +lDN +hvR +qcN +pHU +toh +dJu +lID +vBL +cAp +mRw +kZf +sKL +lID +dQP +tSS +hBb +hMj +xhg +eqO +sub +bUX +swY +qjS +lYZ +fVI +cHd +bjc +syU +kSJ +sGy +pih +aaP +pZF +chy +klm +mqb +gmD +vzQ +vzQ +vzQ +txW +txW +pCa +txW +txW +pCa +txW +txW +pCa +txW +txW +uri +txW +txW +txW +uri +txW +txW +txW +uri +txW +txW +txW +pCa +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(67,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +igh +ujJ +oIM +txW +txW +vJL +pCa +txW +txW +txW +txW +pCa +bGe +gtn +igh +gtn +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +jbJ +iwl +bKM +nKs +vvn +rJW +rJW +dtb +kiX +kiX +lOJ +shy +sAt +kiX +kiX +mmi +chA +dkl +jwN +oTg +kiX +kiX +oOa +rAz +ykB +eVI +vlP +qgQ +jxQ +eDI +kdF +kEj +wRx +bac +agA +gWz +veI +xBK +dJf +pzN +hee +hFB +ejN +avG +wkO +glL +fwU +fVI +cHd +tDY +eIo +nKS +xHC +pih +aMa +sjY +jer +ejs +tvk +gRm +gRm +rQU +txW +txW +txW +rQU +txW +txW +pCa +txW +txW +rQU +txW +bUo +ccy +bUo +txW +txW +uri +txW +txW +bUo +ccy +bUo +txW +txW +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(68,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +nPV +okj +xMU +pCa +txW +txW +txW +txW +txW +txW +pCa +nPV +roh +dnr +igh +igh +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lAM +pIn +uty +uty +dya +ukF +ukF +dtb +dtb +dtb +kiX +kiX +hVc +kiX +kiX +gTc +cCg +chA +sUO +pXE +cCg +fYn +iLB +aWc +ntK +aWc +puG +lVP +gAU +jpM +oGo +kJF +kpo +icp +xkS +jzn +klU +iuU +dgy +jMd +nYQ +dNk +xGw +ilw +avG +wkO +glL +mAb +fVI +cHd +dbs +caJ +qXf +pih +pih +vOs +eqZ +jer +gRm +gRm +gRm +pCa +pCa +pCa +txW +txW +txW +txW +txW +rQU +txW +txW +txW +txW +bUo +ccy +bUo +txW +eBg +ccy +eBg +txW +bUo +ccy +bUo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(69,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nFx +txW +pCa +wZB +txW +txW +txW +txW +txW +txW +txW +txW +csV +qUj +odU +gtn +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mGv +grZ +jyx +pSJ +cig +asY +dRG +lJr +awX +ukF +lHR +xKy +dtb +dtb +qvg +kan +kiX +kmf +eFy +cAv +opu +vBS +skB +vgW +unS +rSk +rRu +eHA +khG +dcL +lVP +iGj +bAs +xkr +ksP +wPA +qOE +nPO +rHM +ipa +wOq +xmJ +jMd +xob +mmq +uID +qvF +cmA +wkO +glL +peC +fIz +oKV +ctH +ctH +ivT +pih +mBP +rAZ +fef +pih +dAp +txW +txW +txW +txW +pCa +pCa +pCa +pCa +txW +txW +txW +txW +txW +txW +pCa +bUo +ccy +bUo +pCa +eBg +ccy +eBg +pCa +bUo +ccy +bUo +pCa +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(70,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +pDm +txW +txW +pDm +txW +txW +txW +pCa +kce +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +oOb +pIn +uty +tWL +nQc +uty +jBa +cRl +wCR +rJW +xKy +igQ +ukF +ukF +igQ +hVc +ilH +gvF +cXE +oKC +aEC +jwN +sTp +fYn +pHM +bDR +kbw +bDR +mlF +kHc +gZn +dek +oRm +kGO +wPA +vcv +nPO +mvf +uHu +poS +gZn +sRw +qGY +qGY +qGY +sRw +jtN +jLY +oKV +ctH +ctH +ctH +ctH +cqM +xDS +pih +pih +bSu +pih +pih +lTu +rVV +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +pCa +txW +txW +txW +txW +bUo +ccy +bUo +pCa +eBg +ccy +eBg +pCa +bUo +ccy +bUo +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(71,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +aRz +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +kaB +pCa +oOb +qFQ +mKY +khs +uty +uty +uty +dya +awX +mqY +kan +dtb +rJW +ukF +rKr +hVc +soi +deP +nXY +gvt +lZc +bco +snd +kiX +kiX +rhg +lnV +eCS +uXE +kHc +kHc +kHc +kHc +qfu +pYn +urZ +gwQ +pcM +kHc +kHc +sRw +sRw +muM +caE +sbs +sRw +sRw +ctH +ctH +ctH +jEd +frm +cdJ +wVV +nFP +vIf +pih +cxJ +pih +iMs +oQT +fvL +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +lGA +txW +bUo +ccy +bUo +txW +eBg +ccy +eBg +txW +bUo +ccy +bUo +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(72,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pDm +txW +txW +txW +txW +txW +txW +txW +txW +pCa +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +oOb +dPm +uty +kBS +uty +hzt +uty +dya +qOf +awX +raw +xKy +dtb +awX +qip +hVc +xUa +nNf +wFe +sTp +lxd +sTp +bKb +hHk +dMW +dMW +dMW +dMW +dMW +dMW +dMW +bSz +kHc +kHc +vnZ +eTZ +lsO +kHc +kHc +gMt +sRw +tlp +wKS +dDs +iHr +qIC +sRw +rjZ +rsQ +wpr +qVt +cQF +xwg +giZ +cOt +nrA +pih +pcg +pih +pIn +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +pCa +txW +txW +eBg +ccy +eBg +txW +txW +pCa +txW +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(73,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pDm +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +tzy +oEa +akj +tyg +uty +uty +uty +dya +rJW +hug +nov +ukF +dtb +dtb +qvg +kiX +tMF +ewH +uoS +ryu +kiX +lxq +dMW +dMW +dMW +aXu +idB +cjg +cXD +aXu +dMW +dMW +kHc +xMe +chN +xJN +lfV +teD +kHc +sRw +sRw +gmn +nrs +uTp +wce +fuZ +sRw +xwg +frm +pwq +kWd +rTd +cdJ +iuO +qMg +lrJ +pih +syx +pih +pIn +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +pCa +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(74,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +oOb +pIn +uty +xQg +mKY +uty +uty +dya +nWh +rKr +dCz +ukF +dtb +aet +kiX +kiX +dyV +ycn +igU +kiX +kiX +lBa +eOt +dMW +yjY +jUZ +ksT +mnG +uTS +fkb +bqf +dMW +oVb +mkT +dNX +kik +vdg +amT +wuj +sRw +hFc +xBN +oSZ +unn +oLd +xBN +uCx +ngL +tNL +ngL +tNL +ngL +xwg +fpB +uzQ +pih +pih +guV +pih +pih +vkH +xGr +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +lGA +lGA +lGA +lGA +lGA +lGA +lGA +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(75,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +kaB +pCa +yjT +gds +uty +aqk +lQo +bxg +lQo +qJg +nPV +xKy +ukF +dtb +aet +aet +ohw +sWX +oEJ +wjg +lLe +aet +itO +sMh +pOI +pAP +guL +jUn +qxo +viG +msZ +qrx +mkO +phb +ryJ +mwa +tbR +tbR +tbR +jbQ +pBq +xow +gFa +rfB +eXj +uTF +gZE +eYM +rVX +ngL +hTW +vGe +lnW +ngL +pih +pih +hOD +pih +wPp +lTn +ecf +chy +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(76,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +yjT +iFP +mKY +kBS +uty +uty +mKY +dya +dtb +dtb +dtb +dtb +aet +eXx +qOu +xyS +bYt +vSh +tmk +asT +hdM +nWX +kBj +jAa +umC +deT +rxF +lzb +rdh +nNn +dVJ +phb +kOW +bfk +tbR +tbR +tbR +aBn +xZg +xow +kBe +wkN +jEb +rrF +jEb +hMf +bIi +lRN +wvY +hWq +wPP +hxm +pih +anq +nyA +pih +kWS +csK +jMm +chy +mKY +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(77,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +pCa +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +tzy +nSi +ujR +qxP +uty +uty +uty +dya +xKy +xKy +dtb +aet +aet +fBb +pbZ +sfV +nbz +uFj +cMN +aet +pve +tmj +rSd +pAP +kae +mec +xHM +wrx +wSE +rRw +fyS +phb +aod +vQF +fNZ +sFc +wWR +bCn +xrY +xow +byo +kia +dHT +bda +dHT +kaG +ydV +ngL +sry +vKP +vnl +eVJ +pih +pih +nkt +pih +pih +rbw +pih +pih +pih +aLd +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(78,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +pCa +aLg +pCa +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +oOb +pIn +mKY +xQg +uty +hzt +uty +dya +igQ +xKy +dtb +aet +xMB +pwi +drB +fGT +vOg +vvu +jOI +inE +aAJ +aon +jUn +dMW +fcV +aMk +vlE +cKN +nHR +vZT +jIX +dMW +mOJ +gmq +aTS +eHd +iqQ +uOl +gfZ +sRw +eDV +luk +dDE +hrm +okV +anI +rha +lMl +oep +cNs +wwo +cAR +sLM +pih +oKs +pzT +oJm +rDt +jfr +iZx +pih +pih +bJQ +pCa +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(79,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +bsn +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +kaB +pCa +oOb +gds +uty +khs +uty +tzp +uty +dya +dtb +uSp +dtb +aet +oTJ +eCl +hPt +scx +cKl +qrg +eCl +lWE +aAJ +ngr +wCs +gla +fdR +pDf +xut +opd +xut +nNK +qhL +qle +lID +koq +ehZ +ehZ +ehZ +dAa +lID +unG +mOA +cdy +uiZ +xpO +uiZ +eqr +xdl +nho +xUR +jdQ +xUR +xUR +try +pih +icQ +rZn +xFk +wGF +qEr +aHZ +ipr +chy +aXK +tLt +tyH +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(80,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +txW +txW +pCa +txW +txW +txW +bsn +txW +txW +txW +pCa +txW +txW +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +yjT +iFP +uty +obk +oPN +uty +hRv +ndj +nWh +xKy +dtb +aet +xsw +uyx +fBk +nuC +lFs +mRk +eCl +mqZ +iqS +rer +cjB +dnV +nXU +dGY +lII +glX +dfH +ePF +xHM +sTe +pbF +nWO +ehZ +yhI +ehZ +mRI +ipP +lxV +pZJ +wBi +wvG +jQT +sSQ +nHd +pXY +wqD +xUR +wVy +cDP +xUR +uSc +pih +icQ +pih +hZv +duv +wbM +uhI +blQ +chy +gds +uty +iau +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(81,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +rQU +lGA +txW +olu +olu +olu +olu +olu +txW +cGq +txW +olu +olu +olu +olu +olu +txW +lGA +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mGv +ghV +oOw +vLi +ndj +sJF +bXn +ndj +jkW +vSN +dtb +dtb +aet +wNc +eCl +sKq +scx +cKl +xUv +eCl +jcf +aAJ +osM +wXV +pUn +uQw +pcw +xut +tNh +xut +nrJ +cww +hmG +crh +gLw +ehZ +ehZ +ehZ +ycd +crh +pvr +lza +xJi +uiZ +jJM +uiZ +eqr +hRo +apN +xUR +fOs +aUf +xUR +gLW +pih +icQ +rZn +wMt +bsK +wzU +pJl +gQM +chy +teH +cyJ +jzD +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(82,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +pCa +bsn +bsn +bsn +bsn +bsn +bsn +cGq +tYE +bsn +bsn +bsn +bsn +bsn +pCa +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +fic +fic +lBk +dtb +qvg +dtb +igQ +dtb +aet +tPK +ktX +oRl +vvu +vOg +fGT +jSI +aVs +aAJ +ncq +eYA +dMW +fcV +vTG +oCI +rXt +bbr +dhB +tLT +dMW +eAb +mrW +byU +kCs +jdv +fqM +kSU +sRw +xxU +pXF +rQZ +cRJ +jwc +wye +rha +kVJ +dTS +pZO +bho +aDZ +hSU +pih +eiA +lib +sui +iEp +fhz +dUV +pih +pih +ibl +pCa +pCa +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(83,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +txW +olu +olu +olu +olu +olu +txW +qqt +txW +olu +olu +olu +olu +olu +txW +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +oOb +dtb +dtb +xKy +dtb +dtb +aet +aet +kvD +jJn +sfV +bSi +aWX +dZN +aet +tZN +sMh +pOI +pAP +bAW +dJU +nXU +izJ +nXU +dPS +wFl +phb +hxc +ttf +xuB +wwn +xpm +qpT +bBo +xow +hTB +dca +abU +ihi +vqf +vbh +xcO +ngL +sry +hws +qCE +wXe +pih +pih +cxJ +pih +pih +iYr +pih +pih +pih +hiY +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(84,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +txW +pCa +pCa +txW +txW +txW +xBh +txW +txW +txW +pCa +pCa +txW +txW +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +thP +akB +dtb +dtb +xKy +xKy +dtb +aet +tWI +aEj +fYy +dvT +nAK +kDI +bdf +hdM +nWX +kBj +jAa +umC +iQC +rXo +lzb +rdh +sPD +dVJ +phb +ryJ +tQd +tbR +tbR +tbR +oBm +pBq +xow +kBe +lOn +lPw +caW +rov +gxx +bIi +rPR +iWv +ogS +ekB +mkA +pih +aBw +dtX +pih +ttW +aaw +cFh +chy +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(85,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vTS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +olu +olu +olu +olu +olu +txW +pCa +qqt +pCa +txW +olu +olu +olu +olu +olu +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +txW +txW +nnZ +kLH +kLH +akB +dtb +dtb +aet +aet +fUF +tFd +tKF +vTr +mwA +aet +uzD +tmj +rSd +pAP +qnq +jUn +tLH +vIS +gKS +qrx +pIz +phb +kOW +kHA +tbR +tbR +tbR +tvF +xZg +xow +hcW +gXA +sEi +aNm +exj +mKD +psu +ngL +vJd +rVK +kqZ +pih +pih +xQV +rSj +pih +pzR +uMe +xdo +chy +mKY +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(86,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +rQU +lGA +pCa +bsn +bsn +bsn +bsn +bsn +bsn +bsn +cGq +bsn +bsn +bsn +bsn +bsn +bsn +bsn +pCa +lGA +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +pCa +txW +txW +ewt +akB +dnl +aKY +rcu +rcu +rcu +dMb +rcu +rcu +rcu +dMW +fJp +mAu +dMW +kwp +wXJ +avm +mnG +uTS +bLL +czc +dMW +oqp +mkS +iLR +dGR +uOZ +rep +erJ +sRw +hFc +rpc +oSZ +myL +vrO +rpc +uCx +ngL +ngL +bUU +ngL +pih +cHf +cxJ +pih +pih +pih +feZ +pih +pih +aEz +xGr +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(87,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +olu +olu +olu +olu +olu +txW +pCa +xBh +pCa +txW +olu +olu +olu +olu +olu +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +oOb +eIT +qhw +rcu +hCu +qmH +sbL +jQz +ntQ +hCZ +hCZ +ojS +hCZ +hCZ +hCZ +aXu +cUG +rrG +lvv +aXu +hCZ +hCZ +hCZ +bJm +jVj +hAL +ifj +mNm +naa +naa +naa +bBR +wKS +uTp +yfO +gEv +sRw +wqo +xbF +qkC +mRA +pih +pih +kga +mBh +ndi +pih +pih +pih +slD +mKY +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(88,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +vTS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +txW +pCa +pCa +txW +txW +txW +qqt +txW +txW +txW +pCa +pCa +txW +txW +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +txW +txW +oOb +jqr +kPD +rcu +auO +jsG +uuJ +edD +geF +hCZ +cyz +aTv +qIc +wuX +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +iVh +hCZ +hCZ +uyc +caq +ihs +naa +naa +rbJ +naa +cRZ +ljz +dDs +bri +qjD +sRw +xuH +axl +afx +fCr +xpa +pih +cxJ +wnj +lsX +pih +kan +qvg +pIn +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(89,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +pCa +txW +pCa +txW +txW +csV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +txW +olu +olu +olu +olu +olu +txW +xBh +txW +olu +olu +olu +olu +olu +txW +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hCZ +hCZ +hCZ +hCZ +jSf +jNH +gge +kla +cCk +hCZ +owc +lDn +eEg +tio +fUB +moK +moK +eNo +moK +moK +sUy +moK +hHd +qAF +qtF +iBN +ixt +mtj +bkh +fSj +naa +naa +umb +ejb +nxu +sRw +sRw +eAy +jDl +ayG +qpk +fXH +pih +imm +pih +pih +pih +qvg +aUq +vGO +vwd +vfV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(90,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +feY +txW +txW +vDK +igh +cFQ +pCa +txW +txW +igh +xMU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +pCa +bsn +bsn +bsn +bsn +bsn +bsn +cGq +bsn +bsn +bsn +bsn +bsn +bsn +pCa +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hCZ +hCZ +jLI +ppv +hCZ +hCZ +vox +byz +vcL +hCZ +hCZ +tuR +moK +moK +nMM +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +cik +hCZ +hCZ +cbH +kke +ixt +naa +sxN +kaM +gdS +naa +naa +naa +naa +naa +naa +odl +iXF +lqb +vZY +hnZ +naa +pwk +naa +kan +igQ +rKr +kan +dtb +mAq +hDT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(91,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +tPh +igh +txW +txW +pCa +sAH +igh +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +rQU +lGA +txW +olu +olu +olu +olu +olu +txW +cGq +txW +olu +olu +olu +olu +olu +txW +lGA +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hCZ +sWQ +mFe +bWm +thK +hCZ +gkY +bVQ +eDK +hCZ +xnQ +iRe +sTT +hCZ +hCZ +hCZ +iPr +ooi +ryG +ofT +mAn +hCZ +hCZ +hCZ +evZ +dEw +riB +vVm +naa +fqC +dmB +ewW +vln +aJZ +pdz +mKX +npr +naa +naa +kjp +nlG +pyQ +naa +naa +mZs +naa +igQ +rKr +dtb +dtb +kan +dAp +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(92,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +tUq +krK +igh +igh +cFQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +txW +txW +pCa +txW +txW +txW +cGq +txW +txW +txW +pCa +txW +txW +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xFw +wwU +xxi +lkr +ubh +hCZ +eMY +pCn +jDg +hCZ +fDP +cgN +hCZ +hCZ +wjx +nic +bJn +mjW +tDR +stk +bJn +nic +jDu +bwC +vdN +odr +hYK +bBW +naa +naa +sax +bkh +pNT +gRx +xor +ocP +fgG +azX +naa +pRJ +nlG +blI +naa +fQl +oth +naa +ato +ato +ato +htw +emW +hDT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(93,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +uGr +cKi +vYy +igh +igh +pCa +pCa +pCa +pCa +vTS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +txW +txW +txW +rQU +pCa +bsn +pCa +rQU +txW +txW +txW +lGA +lGA +lGA +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +wBy +onc +dBe +hZS +wBy +txW +txW +txW +txW +txW +txW +xFw +aRb +cwM +qXt +xRu +hCZ +hCZ +iAU +hCZ +hCZ +hdF +cqV +hCZ +syB +isi +yhK +iye +bJn +ofh +bJn +ufx +hnx +fFe +bwC +kHc +qlp +mnY +stP +wLa +naa +ieO +ieO +naL +buT +aLv +rCQ +wFW +ogl +naa +gCM +pRn +qMJ +naa +iJI +naa +naa +xlS +eQG +lcs +htw +htw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(94,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +sAS +pCa +qMU +igh +gGD +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +eYF +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +rVd +rVd +rVd +rVd +rVd +pCa +pCa +txW +txW +txW +txW +xFw +oFR +nli +ykw +bfF +sti +elz +xER +ugP +ugP +jyh +kGK +hCZ +bxv +xbv +cho +kpP +eIB +bFr +eTG +wiE +hMB +gMe +pyu +bwC +cai +dfK +aVk +bcd +naa +naa +naa +naa +naa +eEr +fzq +mfz +ePY +naa +naa +mtb +naa +naa +qNk +tiT +iiE +iwW +iHi +olD +ePk +ato +rQU +pCa +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(95,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +jtH +wEh +igh +igh +cFQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +lAC +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rVd +rVd +rVd +jRp +aGI +fGi +rVd +rVd +rVd +pCa +txW +txW +txW +hCZ +bWm +nxv +iGi +fAG +ejT +asq +lPn +wcv +hCZ +hCZ +hCZ +hCZ +lSX +vzj +iUX +rqz +qbP +xwr +fVu +uVW +kaO +oDu +mrp +vbj +uRO +hYK +pXh +idI +idI +ani +jHo +iEi +naa +naa +ipm +qLd +kaM +naa +mRi +tQL +vrq +xJq +pYZ +naa +cYZ +hUH +qYA +lMI +qwV +htw +ato +htw +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(96,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +tFc +igh +igh +igh +igh +pCa +pCa +pCa +pCa +vTS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +txW +rQU +pCa +pCa +nDD +pCa +pCa +rQU +txW +pCa +pCa +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +gBg +anE +rVd +kGk +nUY +uVB +emn +dkq +hqp +ofj +rVd +anE +exW +dtb +dtb +hCZ +gBO +nBm +hCZ +nDR +hCZ +ryz +ktw +hCZ +hCZ +pat +xjr +bwC +bwC +svL +dvp +lBb +gqt +rnu +hHg +gbW +jRc +pVA +jYJ +miM +bEE +tZr +lZa +tfS +fcY +nGK +sYi +gOF +rZV +naa +naa +naa +knH +naa +ejY +ifn +cmx +naa +mCK +fjx +hCP +woR +kfK +rFH +bFu +mHY +kRB +svQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(97,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kIc +jVA +aML +npx +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +npN +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +cLn +cLn +cLn +lmv +nHB +nHB +yfe +rrW +wfq +rrW +kqh +rrW +dcC +nHB +nHB +vKs +cLn +cLn +hCZ +vjZ +hCZ +hCZ +nxz +fZq +cEo +ktw +hCZ +qKT +vae +bkn +qEa +uhW +kjF +kfU +lBb +gqt +izM +hHg +gbW +ezU +wqA +wor +bwC +iRT +dfK +dvR +iyq +lLJ +rqs +pnB +iHF +ljK +uZJ +naa +nVx +kaM +naa +nQC +aMd +cNv +naa +fhu +naa +eWg +khC +rrg +khy +akT +htw +ato +htw +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(98,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +rKr +pCa +oHp +ikg +igh +jgM +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +pCa +txW +txW +txW +txW +iaZ +txW +txW +txW +txW +pCa +txW +txW +kLa +otP +kLa +bIZ +bIZ +bIZ +bIZ +bIZ +bIZ +nHB +hbF +hSM +rEt +uRy +xdc +mMc +fAA +ghu +bEW +nHB +sgm +sgm +sgm +hCZ +hCZ +hCZ +qlr +fcH +nxv +hYO +onh +hCZ +wwD +bsr +cuf +iyM +ils +oQy +aTs +uTX +xku +aRj +ciK +iGE +eVP +dWo +dWo +bOg +iRT +dfK +sAD +idI +nRd +myM +mxc +dgZ +fBX +eCc +naa +qCS +wvL +kBW +vcG +gNx +wgO +hKe +qQh +ibV +roz +lKm +tHw +cWm +ePk +ato +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(99,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +juO +svi +hFr +ist +igh +igh +igh +pCa +pCa +vTS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +pCa +pCa +txW +rQU +pCa +mIF +pCa +rQU +txW +pCa +pCa +txW +txW +kLa +niR +ihf +kdm +nkZ +bXO +axH +rXn +pPJ +nHB +rwI +aqQ +vrR +feR +rfC +lpq +dCf +aqQ +gyf +nHB +dCZ +lAq +tMT +lAq +fjZ +gIR +bsL +bsL +xuD +dVq +wOB +hCZ +tTb +xrq +oJR +dWL +dKD +jeI +iNA +xKe +nDY +tFQ +jDw +raL +dvc +dWo +dWo +bOg +iRT +jAS +ydp +eao +qrB +xlt +pVg +xKc +eNE +hOM +naa +naa +naa +teG +bYb +diF +kff +naa +vtD +naa +naa +ell +kUG +hFA +htw +htw +txW +txW +txW +txW +txW +txW +txW +nzu +vYb +sEn +iUA +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(100,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xCj +iKY +igh +igh +igh +igh +cFQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +txW +txW +txW +pCa +txW +txW +pCa +txW +txW +txW +gXo +txW +txW +txW +pCa +txW +txW +txW +kLa +eKK +kLa +bIZ +obp +gRg +itD +jsO +fHm +xMI +vgm +nsl +lap +eKV +pXi +eKV +gQR +kOp +nru +xMI +qJA +vzo +vdS +mQV +fgn +hCZ +hCZ +kzV +oOf +mOq +hCZ +hCZ +bWn +exb +cuf +ewn +fDn +sgK +hiS +lLd +fVu +oqS +qbP +vHF +vHy +dWo +dWo +bOg +aLK +dfK +uHF +idI +cfH +uKz +aQI +xVT +faa +atW +naa +mBc +nxr +naa +aPs +nEg +kec +fWU +nfn +puA +naa +ato +ato +ato +htw +dtb +dtb +dtb +dtb +txW +txW +txW +hrd +hrd +dZF +dZF +dZF +hrd +hrd +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(101,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +txW +txW +txW +qcL +igh +igh +igh +igh +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +lAM +aqt +aqt +mGv +aec +aec +lAM +pCa +txW +txW +xsq +txW +txW +txW +pCa +txW +kLa +otP +kLa +kuv +kLa +nQT +rHz +vAz +oZp +ocO +isI +hEm +stH +myd +erL +rZy +kvF +knc +tjx +wzO +qTK +byH +oAs +hgh +sZJ +hgh +wIb +wof +hCZ +bHa +fcH +xBf +xnQ +hCZ +uDc +tCW +bkn +oxJ +pQK +kjF +wfy +mJn +gqt +knL +hHg +cXZ +rur +ehz +wbr +bwC +iRT +dfK +kGR +xXh +toT +aSu +uYh +bBE +vha +wOk +cWs +txO +rvb +naa +teG +naa +teG +naa +win +mqR +naa +rKr +jkW +dtb +dtb +kan +dtb +dtb +naa +naa +bFB +hrd +hrd +lkp +pxm +kUd +naT +mNN +hrd +hrd +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(102,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +txW +txW +txW +nvD +pCa +txW +txW +pCa +txW +txW +nPV +xka +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +itE +gxe +aNh +jjf +sLa +sLa +dtn +xKy +dtb +txW +lmh +cFb +lmh +txW +pCa +pCa +txW +kLa +fhH +ioq +bHD +kLa +tnz +sHT +jvV +gwN +bQa +dQm +ffj +mFP +fjv +gUW +rmj +kkn +kKi +qih +oyr +vcd +dHB +iPU +qGL +luz +jBH +etG +anu +hCZ +uEd +pMJ +qOe +xBf +hCZ +hCZ +lbt +jay +bwC +bwC +asd +hDo +mJn +gqt +knL +hHg +cXZ +sNU +dBo +vVG +lOj +uRO +dcY +kGR +xXh +iJV +btw +oiM +seF +uwK +naa +naa +jFS +rKg +naa +rNr +kra +qsv +fWU +ula +uQm +naa +jkW +kan +qvg +gkg +dtb +dtb +igQ +naa +gcA +rkw +nSz +ljg +jAJ +ord +qrm +aYO +dOT +kyq +hrd +pCa +pCa +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(103,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +txW +txW +txW +txW +pCa +txW +txW +pCa +txW +txW +gtn +igh +pkl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +keO +vIx +nnZ +gxe +dtb +pIn +mKY +uty +uty +svU +ukF +xKy +rQU +lmh +iDy +lmh +rQU +pCa +txW +txW +kLa +jpA +dNl +wbn +kLa +tVO +aRC +tkQ +ufz +ukO +dSn +lRl +xby +hFq +mcX +cSt +gtI +gpj +oKN +kgv +hkm +xwf +vnS +kym +lbp +iYN +kBR +jAm +hCZ +hCZ +hCZ +hCZ +dZX +xBf +hCZ +bwC +bwC +bwC +qGe +fHo +hoV +dvF +ciK +hIe +xku +uSv +uBw +oDu +oLu +xkG +euF +dfK +vRt +idI +idI +eGN +tHQ +xIi +naa +naa +iWf +vDS +riw +oQi +mWb +naa +naa +naa +vtD +naa +naa +naa +naa +rKr +nPV +qvg +kan +rKr +naa +hSY +bFB +hkv +nuc +cGR +sEk +sEk +sEk +msq +eAC +dZF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(104,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +xMU +txW +txW +txW +txW +bTl +txW +txW +vTS +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +ith +oQT +gEb +ukF +ukF +bwF +uty +uty +mKY +svU +kan +ukF +rAq +lmh +djF +lmh +rAq +pCa +kLa +otP +kLa +pFD +dNl +eYk +kLa +xRc +oeK +tco +pmH +oEQ +enG +xMI +vgm +mHH +hRI +xPo +xNb +cNN +erK +cxW +waG +xMI +wyp +wyp +jGL +lQl +aMZ +vyb +wiX +yiS +qfk +hCZ +qmJ +fGP +hCZ +htH +tTl +bwC +bxv +sbp +cho +lNb +rTP +qqN +faH +sKH +hMB +rQI +dvv +bwC +aAj +dfK +bVW +nRt +naa +naa +naa +naa +naa +qxa +bPT +rwW +dVQ +pcG +pYb +opa +vCS +jWv +oth +wwX +sSt +irB +naa +tiT +naa +igQ +naa +tiT +naa +cry +bFB +nuc +nuc +hDq +kCx +tAp +kyp +gSO +gVA +dZF +pCa +pCa +pCa +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(105,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +bwF +uty +svU +vCa +vSN +eiU +xZG +wPS +hiC +eoi +ukF +rAq +rAq +iFk +iQe +hRc +rAq +gZK +kLa +tFp +ilL +lfg +qDD +nZD +kLa +aiw +nJX +eww +mKj +gBN +gBN +nHB +bxr +ppa +mfZ +jrK +caP +aLy +efr +jMq +krg +nHB +axF +axF +mkk +mqg +aMZ +aAC +mCy +vvp +mIj +kux +rnp +jxJ +hCZ +ujo +pKX +bwC +wNs +dXu +aBt +fFh +bJn +huv +bJn +tEF +sep +wrj +bwC +kHc +lbA +dfK +cLh +vMV +naa +dUM +sEP +oLD +qwZ +klh +bLE +mvc +vWZ +vUY +hRh +naa +jck +naa +jJw +naa +naa +veW +ygk +rxM +naa +tiT +naa +qoU +naa +tBw +bFB +lez +nuc +tbG +sEk +sEk +sEk +msq +eAC +dZF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(106,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +bwF +mKY +wTy +ukF +jjh +lzL +ukF +nPV +dtb +jkW +xKy +rAq +ptE +jlC +mjp +cRr +cNy +gZK +sQD +bpj +kLa +kLa +kLa +kLa +kLa +xHz +nJX +eww +tJb +gBN +gBN +nHB +ckO +iTb +toO +kRr +nqp +clv +toO +fdM +lAm +nHB +axF +axF +nzK +tsf +aMZ +fJj +pDl +pDl +pDl +hCZ +xlX +uxU +iWJ +ykO +cMW +bwC +bwC +kef +uiQ +bJn +ofB +oAV +iRj +bJn +uiQ +jGH +bwC +rXZ +toX +lPA +lcT +naa +naa +aYi +nVw +bJc +naa +nOw +sBy +tFJ +qIh +uyp +pwP +dkh +qMz +eSD +mLb +oaE +uut +rum +dxM +ddj +yen +irB +sSt +veW +qLk +irB +tSW +oVj +jnv +tIK +fSW +hZD +nOZ +wWa +sDR +hrd +pCa +pCa +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(107,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +pIn +uty +eJn +jvP +gEb +ukF +jbJ +sLa +jjf +vBu +dtb +rAq +bTY +mHy +tKv +qVC +jYq +gZK +ouZ +iqV +kLa +wxD +oRD +oNx +uNV +pYE +tCC +cav +gwF +bIZ +bIZ +nHB +nHB +nHB +xMI +niJ +uBs +xPC +xMI +nHB +nHB +nHB +sgm +sgm +edF +gvb +iEY +fxm +bnA +dVW +oEB +hCZ +jki +fGP +hCZ +xBo +pAo +lET +bwC +bwC +bwC +iPr +gTy +eBd +qQC +mAn +hCZ +hCZ +hCZ +tpb +oRQ +dfK +ecE +naa +kKl +wsj +xnE +xOD +hyi +gRF +gPu +gYK +mfD +vso +bAQ +naa +vdf +naa +naa +naa +naa +irB +vZX +iMQ +naa +ojl +qvj +tpz +bFB +bFB +bFB +hrd +pAe +hrd +cZy +hrd +rmX +hrd +pAe +hrd +hrd +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(108,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +tij +pIn +uty +mKY +uty +rwl +sQl +gds +uty +uty +rwl +kLa +gZK +gZK +qFJ +ldL +qFJ +gZK +gZK +kLa +bDq +kLa +apU +aUQ +wFs +uNV +uVa +dnb +uVa +uVa +uVa +sVv +qhv +goc +wuf +pzM +kkq +kyF +olb +iCn +mVt +api +kdL +jwB +uVa +uVa +uVa +vAi +uVa +pDl +gpF +wzd +kux +rnp +pkS +hCZ +gGN +hCZ +rXF +hCZ +cik +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +pNz +hCZ +hCZ +iZM +dfK +ofO +naa +naa +ejY +ovR +pPX +naa +naa +naa +iZm +mez +txX +naa +naa +qMz +dnB +xXH +naa +uef +irB +veW +dqq +irB +irB +foK +bFB +bFB +nuc +nuc +vpi +nuc +nuc +jBU +kqm +cbb +nuc +nuc +vpi +hrd +gKy +gKy +gKy +gKy +gKy +txW +txW +txW +txW +txW +nzu +txW +nPJ +fBx +tod +txW +nzu +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(109,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +pCa +pCa +nnZ +sJF +wPS +wPS +wPS +ndj +xKy +mGK +wPS +xZG +jXs +qFJ +rbZ +iRa +bXj +mPK +qhK +ncT +wwk +bpj +dxI +kLa +dqK +rOl +dqK +uNV +dKh +jKZ +mgX +uVa +vPU +rzI +ksa +goc +uPn +uPn +uPn +qhj +uPn +uPn +uPn +api +sJZ +whW +iho +uVa +eCM +enJ +mBX +gTW +gTW +gTW +hCZ +hCZ +uxU +xBf +hmj +iWJ +gWg +hCZ +dEf +fSK +dVo +gBE +xFZ +nkl +nhW +rGC +ndx +nFC +bfg +wrb +tSl +jUg +mqu +qHi +hKx +jvm +xIQ +qVx +gfo +sqc +qHi +lyR +hah +heW +tMI +xtH +lBc +gBZ +naa +tDa +bFB +bFB +bFB +bFB +bFB +jpc +bFB +vpi +nuc +nuc +vpi +nuc +nuc +jBU +vpi +cbb +nuc +nuc +vpi +nuc +gKy +lmY +fYN +eqC +gKy +dtb +txW +txW +txW +txW +pCa +txW +gxa +omy +hsh +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(110,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +xKy +vCa +ukF +dtb +dtb +igQ +dtb +ukF +qOf +awX +qFJ +jeQ +gSs +gFN +iZG +gzE +jFG +fDx +xZL +kLa +kLa +jUv +fUS +gPD +uNV +tNP +xVF +yjJ +iMx +yjZ +knQ +wkG +goc +lLg +xjj +hfO +bcR +gdW +ioB +vQU +api +lkU +ycr +blu +iMx +vVs +tfm +tuw +oAc +kEn +oAN +rZr +hCZ +hCZ +hCZ +hmj +hCZ +hCZ +hCZ +suN +qFx +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +hCZ +usK +aPm +kor +naa +naa +naa +naa +naa +naa +naa +naa +naa +peU +ffz +tgA +tgA +asl +apJ +wNP +bFB +bFB +bFB +brZ +kJk +qdg +bFB +bFB +bFB +rLj +nuc +nuc +vpi +nuc +nuc +jBU +nuc +cbb +nuc +nuc +vpi +nuc +gKy +daQ +adl +oKi +gKy +dtb +dtb +txW +pCa +nuy +aqt +jyx +fVG +fyd +dIx +lDa +aqt +aXd +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(111,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +dtb +xKy +eiG +tGE +dtb +dtb +vkB +lRC +kye +qip +qFJ +jeQ +kGd +qXA +kTa +gZM +vVq +esT +bpj +kLa +rIt +mGW +gTO +wVn +xSA +tLj +elF +yjJ +uVa +mAA +aan +iPk +uVa +icj +icj +jLx +icj +daE +icj +icj +uVa +gsx +aan +vkq +uVa +vVs +fqG +uuR +oAc +vlQ +mkK +oVs +nyK +lfL +hCZ +kdV +ioj +uIM +uWz +dpe +hCZ +hCZ +uKA +eWh +icr +lGR +tPp +tsN +qTR +kiJ +xlW +xlF +hfU +pnu +vKc +oDW +pDP +nzo +gXv +kgz +kXW +naa +naa +adb +naa +naa +naa +kuD +naa +bFB +iTM +kOo +dNp +lAH +fvl +eUE +aTy +rYR +eav +vpi +vpi +tDS +vpi +vxa +uPl +qLC +pxO +ioQ +vpi +tDS +vpi +gKy +gpe +wyn +gpe +gKy +dtb +dtb +txW +sEF +iVN +vSW +gAD +omy +cXz +cXz +uJk +okv +uDx +sEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(112,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +opN +pCa +pCa +pCa +opN +pCa +pCa +pCa +opN +pCa +vuR +ukF +ukF +tFN +hLR +aUM +ukF +dVZ +oOZ +lRC +qOf +kLa +kLa +kLa +pCk +gJu +qFJ +kLa +kLa +trS +kLa +biA +cYr +hpV +ink +uNV +mnh +wfx +yjJ +uKT +sGo +rOK +oBt +nCQ +icj +plJ +sWo +hlR +usH +dGx +eKx +mCb +qMH +rOK +aHR +hjP +vVs +aRE +aln +pju +knv +rjP +ueF +tyt +isM +hCZ +bHr +wGz +hCZ +hCZ +hCZ +hCZ +iLn +hhS +iyl +rhQ +fFr +bvW +bvW +wvE +xTe +lpF +xlF +nVi +gfg +mPT +pEF +peG +vsI +nym +ffG +nAA +ogq +naa +kXm +qwZ +nrG +pYu +vlw +kSG +bFB +dXE +unP +whp +wBP +whp +qOs +vOP +rYR +vpi +nuc +nuc +nuc +nuc +mSv +pRr +cyW +pRr +dIs +nuc +nuc +nuc +gKy +wMY +llB +sTZ +gKy +gKy +dtb +pCa +oOb +uQr +cXz +wbP +bJY +bJY +bJY +rhF +cXz +sdV +vMG +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(113,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +dtb +eri +eri +eri +dtb +eri +txW +txW +dtb +txW +nPC +ukF +lRC +ukF +iNg +dtb +ukF +rKr +lRC +qip +rHg +kLa +fgt +gCJ +kCt +vfZ +tHt +rhZ +iCi +oOu +kLa +fTi +mqX +mOC +cVR +ovc +xcT +utQ +uWQ +bzv +sOB +jed +oBt +tvH +icj +mzf +ygg +axM +goi +cSq +jfT +mCb +qMH +pUB +msm +wwi +eFK +jig +cTv +flC +lvf +wyi +axW +lEY +uPd +hCZ +qJE +vjK +hCZ +fOi +iPn +hCZ +vZj +lFV +kpp +wWn +oDN +pDH +bvW +mbK +qqR +lpF +xlF +nVi +tBI +mPT +qoo +nKM +kpC +aEV +ezk +kpC +tkO +naa +pJx +naa +naa +naa +kQa +bFB +bFB +oJb +vkh +aWd +vWy +pZe +iMj +hLg +rYR +rYR +wkK +nuc +cfX +nsB +xRr +vsA +okb +jsr +uSG +jNn +ekt +nuc +euZ +wkb +szM +mJr +obZ +gKy +dtb +txW +lDK +fan +eUt +wnX +cXz +omy +cXz +htl +fVy +qCB +fPa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(114,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +eri +eri +eri +eri +eri +eri +mGv +tGj +tGj +vcY +dtb +hqw +ukF +xKy +ukF +agJ +qUp +qUp +qUp +qUp +kLa +bTa +vxT +oGL +vxT +hcL +vxT +kLa +dri +kLa +urR +ylg +nEz +gpo +uNV +aAq +wLq +cUI +iRL +cxH +hzk +oBt +nCQ +icj +hhs +pbi +seg +pbi +vbm +eeC +vqQ +vEj +vkS +tFY +dxH +eCA +uYm +efF +rCr +ltw +lEq +lzJ +osd +adt +hCZ +scC +dmO +hCZ +gHi +xYt +hCZ +gWR +jSZ +mng +rNA +kYv +eAj +tFk +ieQ +gFP +nNH +xlF +oyR +xVv +kuO +hyf +pOG +fTM +lhb +iac +kpC +prg +naa +cQb +lYY +qwZ +hrH +yhC +bFB +dlT +hLu +aWd +aKQ +ydK +nJe +pZe +sZA +dEI +rYR +sPC +hrd +uPi +pRr +eTe +kXS +kXS +kXS +aea +pRr +kHK +rBa +ekz +jKh +dtk +tfb +oSD +gKy +dtb +txW +wGa +omy +kBS +cXz +cXz +cXz +cXz +cXz +aPC +omy +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(115,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +eri +eri +eri +eri +eri +eri +vGi +uty +uty +dya +dtb +pCN +jkW +xKy +xKy +qUp +qUp +mnU +vil +qPc +kLa +kLa +vqu +aXa +kPX +ocJ +vqu +tTH +bpj +kLa +kHb +pfv +kyB +oUw +fvs +cix +elF +cUI +uVa +qan +aan +fPb +uVd +icj +icj +oBu +yjt +wOe +icj +icj +uVd +nch +aan +dMp +uVa +qlW +pBa +nkG +oAc +reS +wCn +xOn +jOc +huc +hCZ +htW +gaY +hCZ +eEg +hCZ +hCZ +giy +gye +aTE +bZi +fDJ +fDJ +xzR +fDJ +fDJ +aTh +oJr +tKp +fYi +fYi +aAN +fYi +fYi +naE +lhb +kpC +usN +naa +naa +eUT +naa +naa +idM +bFB +nJc +bAS +gbm +lKQ +jRI +kqP +jQi +jKq +fIN +tAf +fZB +dZR +wFD +cyW +aVm +kXS +kXS +kXS +oOK +cyW +cLM +rJM +gKy +wby +eUJ +szY +iAb +gKy +dtb +pCa +wGa +cXz +kBS +omy +cXz +ryt +cXz +cXz +aPC +cXz +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(116,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +eri +eri +eri +eri +eri +eri +sXU +mKY +uty +svU +ukF +asN +qUp +qUp +qUp +qUp +tzR +xXc +oap +sCf +hgS +kLa +jeQ +fpi +jeQ +fqD +jeQ +kLa +rAv +kLa +kLa +iya +pbu +lPL +uNV +tNP +vUj +cUI +iMx +bon +nox +fVk +uVd +kCn +pRT +jgD +tDe +rft +mDV +pAH +uVd +jxl +ook +uUO +iMx +qlW +oVo +nkG +oAc +olY +yja +eXG +hCZ +hCZ +hCZ +bXQ +dlH +uZk +nEs +hCZ +hRb +bCV +hNK +bCV +iVK +iVK +yck +duV +xIs +czJ +bna +fub +eAL +cSv +ecB +hJl +tIC +kiG +kiG +hZZ +kpC +ial +qvW +naa +pMo +iPw +qwZ +vlw +bFB +cpQ +roW +xsr +lws +unr +rqm +gRW +xkf +mKE +rYR +sPC +hrd +dQq +pRr +eTe +kXS +kXS +kXS +aea +pRr +gKW +rQt +tAu +qEW +hQt +dyb +nmJ +gKy +dtb +txW +rYA +cXz +kBS +cXz +cXz +cXz +cXz +cXz +thj +cXz +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(117,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +eri +eri +eri +eri +eri +eri +sXU +uty +uty +dya +kan +dtb +qUp +xeV +kJO +hSN +fcR +hXt +uLA +qce +bmd +kLa +kLa +kLa +kLa +kLa +kLa +kLa +bpj +iQu +kLa +uNV +uNV +uNV +uNV +rXA +psT +bnM +uVa +iqC +rgy +lXX +uRb +cTV +eIq +uZv +pef +irs +sos +gOq +fTB +iku +gZl +nPY +uVa +tBL +okM +tok +eAi +eAi +dIG +eAi +hCZ +xnQ +fcH +pOZ +mye +pvv +hCZ +hCZ +fDJ +qQi +oih +bCV +iVK +bna +fub +ijB +nbl +ijB +dlm +bJq +saC +ijB +gZT +ijB +qnm +ntj +kiG +kTH +pRz +pHb +fYi +naa +naa +kjA +naa +bFA +bFB +bFB +lhV +ydb +xsr +dBg +gRW +chM +hZr +rYR +rYR +wkK +nuc +lJF +nCH +wbg +sOa +vod +aZj +eCU +eMJ +ert +nuc +euZ +rbg +fYF +cft +tfy +gKy +dtb +txW +izh +vJF +yli +tpQ +omy +cXz +cXz +pNu +aRJ +ooW +sSH +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(118,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +eri +eri +eri +eri +eri +eri +eri +eri +nnZ +sFS +sFS +xpG +ukF +jjh +qUp +tiZ +uGf +fqo +oPI +vzC +xnk +dcI +lfZ +qUp +ebr +iYZ +ggX +bjf +sle +kLa +kSO +nBo +kLa +tDq +chl +hTz +uhK +uhK +fAL +uhK +uhK +uVa +qQq +tet +xhY +gbr +pKh +pTK +hiq +dTX +hhR +txv +pGU +xyq +yeU +uVa +qNb +bHh +ewO +jfq +eAi +pKT +qAi +mRt +hCZ +hCZ +oHO +iMw +hci +pvv +hCZ +yjc +fDJ +iFA +bCV +iVK +iVK +bna +ijB +czt +wvW +jBA +jBA +nTb +jBA +jBA +jxC +ijB +uuH +ntj +kiG +kiG +rfp +xTh +uBc +iPi +naa +kaM +kaM +apJ +ieO +bFB +oxp +hhD +cEA +cUJ +cEA +sfI +xNA +rYR +vpi +nuc +nuc +nuc +nuc +mSv +pRr +cyW +pRr +hne +nuc +nuc +nuc +gKy +xvT +uhd +qVc +gKy +gKy +dtb +pCa +vYK +uQr +cXz +dEM +sUm +vIE +vIE +rMV +omy +sdV +xvA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(119,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eri +eri +dtb +eri +eri +eri +dtb +eri +txW +txW +dtb +txW +doC +ukF +vCa +qUp +otK +fnj +qUp +qUp +jeA +bnn +iMg +qUp +qUp +qUA +dcm +taD +uyZ +hvE +kLa +bIz +kyi +wfW +grk +gaK +nRn +vaE +oyb +hjE +gbV +saO +uhK +uhK +uhK +uVd +lYL +fSF +jjn +nCZ +vpB +jUJ +nOj +uVd +dyD +aPi +qNb +qGo +teN +fiV +bhZ +eAi +mqk +kEP +koa +hCZ +kSE +iMw +iMw +iNK +hCZ +hCZ +qcD +mUP +fDJ +rhN +iVK +bna +fub +ijB +eev +kJl +cIJ +cIJ +nUi +cIJ +cIJ +kJl +eev +vZu +fub +ntj +kiG +beh +fYi +uBc +vlo +naa +naa +iCj +apJ +aKf +bFB +eBT +tyW +qFg +nWu +pKQ +wrP +liw +rYR +oLZ +vpi +vpi +tDS +vpi +iFg +pyW +nwo +who +fgd +vpi +tDS +vpi +gKy +gKy +gKy +gKy +gKy +dtb +dtb +txW +fBx +aeD +eUh +ukb +cXz +omy +cXz +xYz +eUh +qeC +sEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(120,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +opN +pCa +pCa +pCa +opN +pCa +pCa +pCa +opN +pCa +vuR +dtb +xKy +qUp +qUp +qUp +qUp +nxd +wGP +vyr +ufN +qze +nhR +jGU +oCd +wUK +lbm +qJw +pJJ +wxC +kTI +kLa +sdm +sdm +sdm +uhK +vjr +uRZ +gmk +gPo +wER +sjK +kJX +uVd +efm +hAd +eDl +tmY +mTn +hAd +tRp +uVd +pbo +lwR +kwv +csz +qKS +kRJ +mUr +hCZ +hCZ +eyq +hCZ +hCZ +aXm +hCZ +hCZ +mvd +hCZ +ujc +hkp +bzN +mUP +fDJ +fDJ +dmN +xmr +kMn +kJl +kJl +qoM +nIC +glP +gGJ +swP +kJl +kJl +aBQ +vHR +wOb +uBc +uBc +uBc +uiq +ykp +rbO +naa +iET +apJ +ayU +bFB +vqJ +vqJ +vqJ +omE +vqJ +vqJ +vqJ +rYR +pxF +nuc +nuc +vpi +nuc +nuc +jBU +nuc +cbb +nuc +nuc +vpi +nuc +hrd +dtb +dtb +dtb +dtb +dtb +dtb +txW +pCa +aXd +kLH +oOw +uxn +uxn +uxn +pVQ +kLH +nuy +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(121,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lAM +bPY +kLH +aGm +qze +sSU +eZt +umJ +iqr +gTb +buq +gBt +aPF +rHU +eQl +nNr +vtu +ixk +kLa +kLa +uqz +kLa +iCL +kwm +axI +uhK +nPx +tqL +jQI +gKN +uhK +qkd +bAD +hkc +jxa +prq +nvY +jik +xbq +lEm +kue +hkc +lAv +ttq +qNb +mDb +ekH +aWl +oPA +hCZ +iae +ktw +rdE +ktw +wBm +qAG +mzY +lJV +hCZ +gqr +sQi +ocR +xBj +aqS +pQH +fub +blG +bjy +aKm +cvQ +anE +weJ +weJ +weJ +anE +cvQ +uSh +gyo +iro +fub +eYI +uMb +iOS +jiF +ody +faQ +naa +twz +eAZ +ieO +bFB +kDP +kDP +fSq +xHO +fSq +cOO +fBa +ajG +vpi +nuc +nuc +vpi +nuc +nuc +jBU +vpi +cbb +nuc +nuc +vpi +nuc +hrd +dtb +dtb +dtb +dtb +dtb +txW +txW +txW +txW +wlY +dtb +wlY +dtb +wlY +dtb +wlY +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(122,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +dtb +dtb +aGm +xTz +dvu +pTa +cIf +qEm +rIW +pbw +cII +nhR +pJD +msE +qCQ +psU +xqA +nhR +sHt +iIe +iZw +hAW +rQc +kIT +bxI +bxI +bxI +vmp +bxI +bxI +bxI +bxI +hkc +nAQ +dXX +dBU +gkD +xFK +eoL +tLF +hkc +qNb +qNb +qNb +qNb +iox +qNb +qNb +hCZ +hCZ +hCZ +hCZ +hCZ +pPF +orI +cAi +hCZ +hCZ +mQb +hwE +vDd +cMm +rHT +pQH +rXU +kRF +qbe +kaf +cvQ +dtb +uty +uty +uty +dtb +cvQ +mEz +fRd +iro +oCy +eYI +xPm +trf +ttk +igx +spm +naa +naa +apJ +bFB +bFB +hxj +pbs +fSq +uLK +fSq +ojx +rjk +ajG +hrd +nuc +nuc +vpi +vqI +nuc +jBU +rGS +cbb +nuc +vqI +vpi +hrd +hrd +txW +txW +txW +txW +txW +txW +txW +txW +txW +lHF +aqt +eVR +eVR +eVR +aqt +aqt +aqt +aqt +sEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(123,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +pCa +pCa +cqc +hbE +hbE +hbE +eIs +abL +oFY +vjM +igc +bPR +iWr +hKn +nvZ +nhR +jYT +lve +qRg +lve +wOs +nhR +ctL +gOk +eqb +tvq +pxg +pqa +bxI +dKG +mTe +hLY +lMP +pup +kCZ +bxI +otO +qyc +myV +nLC +aez +cpm +myV +suB +fVl +qNb +nLx +ipc +voV +kfu +dcx +xLp +qNb +eJi +fVf +gch +hCZ +qTm +dmt +uxm +hCZ +wlC +qsW +uzZ +fNW +iyB +mUP +fTf +ijB +kRF +nqG +hBp +anE +dtb +dtb +dtb +dtb +dtb +anE +jVb +seO +xUO +ijB +sBZ +uBc +uBc +saa +ody +tEO +lRR +naa +xZI +bFB +oQQ +vEK +fde +xfq +cOB +pXX +vEK +fde +oQQ +gFi +ayo +gFi +ayo +gFi +bti +jYw +gFi +bmE +bti +hrd +puy +hrd +txW +txW +txW +txW +txW +txW +txW +txW +txW +aXd +gxe +dtb +wRk +oQT +aBH +xKy +xKy +xKy +dtb +imX +aqt +aqt +nuy +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(124,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +eUh +eUh +eUh +eUh +aGm +dOc +dvu +pTa +mhG +hNu +oid +cYS +lcm +mPk +gSv +aiM +fZu +aiM +kle +mPk +ybS +hUT +lZA +sgE +gVl +kay +bxI +bBh +tTa +nXX +ias +nDa +pOV +bxI +kUl +qyc +myV +tNv +dUX +iDu +oti +suB +shG +qNb +wLk +xIW +tgR +ceJ +mwN +gVF +qta +swN +qtS +pNU +hCZ +gME +pvv +okP +hCZ +aCX +keA +jQZ +eXK +hQH +gAO +fub +ijB +xaB +mIv +kJl +cNP +rgi +rgi +rgi +rgi +rgi +dOr +kJl +tTV +vGH +ijB +fub +lci +diE +qoS +ody +xiH +git +naa +pIT +bFB +piX +tow +okA +rTQ +nYJ +wyO +okA +okA +unz +gFi +ggN +mOg +mEP +gFi +mYB +yfU +kTT +etc +qtr +hrd +nKF +cAe +cAe +cAe +cAe +txW +txW +txW +txW +sEF +aqt +gxe +dtb +smB +nQc +mKY +jBa +rut +hLo +xKy +rHg +xKy +xKy +dtb +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(125,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +mGv +pCa +pCa +gJT +gJT +dtb +dtb +dtb +dtb +dtb +eIs +tvB +sGi +rdx +klC +mtA +tMY +fdn +aGm +mPk +tBX +maH +esJ +maH +mUJ +mPk +mPk +wvv +cTw +cXO +sAi +vgC +bxI +pOo +bad +wvk +tms +hGl +oVF +bxI +paK +qyc +myV +jqV +tIe +sQR +myV +suB +nvV +qNb +eKB +vWw +uba +ivN +gme +xHl +qNb +hwQ +blb +jvg +hCZ +wKx +cCw +ghv +hCZ +ooj +bNr +tYH +wZk +sEB +xCr +ijB +ijB +wgT +wgT +wgT +rgi +rgi +rgi +rgi +rgi +rgi +rgi +wgT +wgT +tWk +ijB +ijB +tOp +hHz +kxH +bkR +huB +vWg +naa +eGB +bFB +miD +nhe +rCs +hGO +coi +uPK +aSC +wRY +ccE +sQa +kZG +bQd +wPt +kVT +qMa +wUS +iAG +mdt +bmY +cAe +cAe +cAe +okQ +vHD +cAe +txW +txW +txW +txW +oOb +hrG +oQT +aBH +bJR +uty +uty +uty +svU +wRk +oQT +aPW +ukF +qvg +dtb +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(126,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +bmp +aGm +wAz +fiq +yiV +rTA +iAO +ooF +jOJ +osZ +rjC +eLU +tis +sNv +vUI +pME +gZg +mPk +isE +nBq +wLS +tCl +kzh +bxI +dAd +fuU +deF +ivp +aZX +smy +bxI +hkc +sYJ +mpA +xwK +oYr +wey +rlJ +glm +hkc +qNb +dEG +ila +cxF +pqQ +knt +hFx +qNb +xBb +tma +xEi +xxk +ubG +qxk +qvV +hCZ +dqo +keA +kgX +eXK +fCq +xCr +ijB +tGJ +sMq +fGO +vQQ +rgi +rgi +rgi +rgi +rgi +rgi +rgi +sMq +fGO +vQQ +lMy +czt +tOp +kvX +cCr +ody +aYh +kFG +naa +lBc +bFB +eGg +xlK +xGN +kEB +dFa +mnZ +nFU +nFU +rZd +gFi +nNh +nNi +vbW +gFi +pQo +svN +lFj +etc +mYB +cAe +fCB +tmn +iqT +cZU +cAe +txW +txW +txW +txW +wAf +iFP +mKY +uLz +evP +uty +hzt +uty +niX +opA +mKY +dya +rHg +dtb +dtb +rfP +oWn +oWn +xOP +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(127,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +dtb +dtb +eIs +eIs +eIs +vKe +kdJ +rRL +hjc +bKI +bnv +ucB +hej +mOv +qdC +hpR +fTH +vYT +tTt +pkd +mPk +rNL +sdm +ovx +qyA +sdm +bxI +eCC +gox +xKb +cFy +jfz +cWU +bxI +vhG +pIX +dtW +cNO +lFg +lkH +nnA +kqR +mcB +qNb +lzo +sZB +mnv +nwJ +oOO +vdb +qNb +nfT +knB +tcU +hCZ +hCZ +hCZ +fpm +hCZ +nDS +cDx +qla +eXK +tbh +ddU +uYL +nQo +wgT +wgT +wgT +rgi +rgi +rgi +rgi +rgi +rgi +rgi +wgT +wgT +wgT +xMp +mYu +mjF +sCA +isW +cbU +pYP +pNy +naa +apJ +bFB +oQQ +yel +dQk +vyl +xVV +tzx +xgp +xvz +oQQ +gFi +gIb +wTn +gIb +gFi +bti +pzS +gFi +vpu +bti +cAe +fQh +dpj +fNg +kGv +cAe +cAe +txW +txW +txW +wAf +iFP +uty +gDO +pIn +uty +uty +mKY +svU +bwF +uty +dya +uSp +ecw +xKy +iFP +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(128,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +dtb +dtb +dtb +cDh +vYz +ham +nJo +gUe +clD +kdb +xrb +imA +cMj +osZ +sFz +fWv +rFr +ucy +xrX +vSf +geL +mPk +jwC +mjo +qzk +qzk +kNt +bxI +bxI +jDO +bxI +bxI +uZQ +iCr +bxI +rrV +fEu +vxQ +uSg +xkQ +ovC +woU +qmV +jpp +qNb +faK +dLl +liG +qNb +qNb +qNb +qNb +bPD +jwU +pnz +hCZ +qPO +hCZ +nwV +hCZ +qgJ +tEi +wmY +mPS +mUP +qzc +jvI +czV +lro +gjO +cvQ +rgi +rgi +rgi +rgi +rgi +rgi +rgi +cvQ +sXX +jRA +rdQ +bUw +hNz +uBc +mgT +tvU +wwY +dRy +naa +dnk +bFB +ajG +lAY +lAY +ajG +iAH +ajG +lAY +lAY +ajG +eOz +msT +sOy +rpO +gFi +qYk +ggD +agg +npO +tHx +cAe +aKP +iHY +nrq +ekj +gMk +cAe +txW +txW +txW +oOb +iFP +mKY +svU +pIn +mKY +uty +uty +dya +bwF +uty +dya +qip +ukF +dtb +pIn +mKY +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(129,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +uty +uty +uty +dtb +bSF +sBH +rPT +csw +oZS +bwU +gSA +cOi +cOi +soO +eSl +mpZ +qXN +bHH +eLh +oJV +bES +gVb +eeb +cyE +djg +jpJ +jpJ +jpJ +jpJ +peS +mdd +rZD +aXz +fIt +meE +nis +feJ +hfY +kuT +uSg +gXU +srd +mKe +bZM +vTj +nYs +vTk +cBs +uwS +lpV +eIk +fkJ +bqR +bqR +bqR +bqR +bqR +pjm +oPP +bzC +tvz +xjQ +bjQ +uTM +uTM +gIA +dYA +bna +wwm +guQ +hkb +okW +cvQ +anE +rgi +rgi +rgi +rgi +rgi +anE +cvQ +nAq +pRX +tWS +rdf +ntj +nHI +xsh +aVC +aVC +bkO +ddf +qkZ +xAh +gjm +oLT +dIr +jEG +oWX +eWy +gaU +iug +fSG +jwn +eKU +qda +upS +qjk +hqG +sZv +ueZ +dFJ +hqG +qct +mUg +bSH +pJh +kwN +thG +cAe +txW +txW +txW +oOb +iFP +uty +wJW +lZG +uty +hzt +uty +wJW +smW +mKY +dya +dtb +lCd +igQ +oEa +ujR +ujR +csc +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(130,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +uty +uty +uty +dtb +dtb +eIs +eiC +aGm +baM +hDH +iaK +cOi +cOi +kQL +nRx +qsm +elV +qqn +rXz +oRg +gjS +icW +sQE +qIx +fEj +mEs +dgt +ujf +rNp +mEs +toZ +mEs +fut +rEg +tYn +tYn +ngK +xTO +vWV +tEg +rrD +jHn +rxX +pjr +aEI +dQi +hYM +tYn +deW +nsq +jZY +onp +joT +mEs +mEs +mEs +ujf +mEs +mEs +mEs +cYF +koD +bmu +bmu +bmu +bmu +dYA +bCc +tGC +iul +olS +glP +cvQ +cvQ +rgi +rgi +rgi +rgi +rgi +cvQ +cvQ +glP +wlJ +fcZ +kPn +bCc +nHI +oba +oba +oba +oba +ken +fPu +fPu +vbf +fPu +jEP +fPu +dUb +gEx +pCj +pCj +hUa +fpg +jfo +bfp +uvg +mPm +uWt +jMU +cVt +kbj +lzC +cTi +gdX +mOi +sVs +dkj +ucH +cAe +txW +txW +txW +oOb +mGK +vwd +jXs +pIn +uty +uty +uty +dya +lje +vwd +ndj +agJ +rJW +ukF +bwF +uty +mKY +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(131,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +uty +uty +uty +dtb +dtb +sBH +sAG +csw +oZS +bwU +gSA +cOi +cOi +sSe +tlV +pau +rxk +avu +jQD +qCw +aGT +jdi +gYc +tnJ +aDo +xCc +yhV +aYc +aYc +hsv +jmZ +ilr +xkE +aTg +csk +pxJ +gGp +rmr +naK +rQr +lDv +fqy +uNI +okY +gzt +gbE +dWh +exg +iUq +pAu +nnL +xJR +oVD +jmZ +xiD +wAV +jmZ +piW +sTz +prp +vvZ +qpN +bAb +gKT +gKT +dOZ +bzp +jEw +eyE +urH +rOL +eiY +cvQ +anE +rgi +rgi +rgi +rgi +rgi +anE +cvQ +lSF +epf +xVi +aFM +ksn +wnt +vPG +ryV +cSd +gmL +kRe +csR +hec +xNc +cTc +dxc +fiR +ceU +xzP +xzP +qvb +nbU +iuF +vHs +yaX +tVx +qlB +opt +qSA +dCi +qgW +opt +aJj +rwe +dob +eyR +ffp +lZb +cAe +txW +txW +txW +fBx +kLH +uPq +dtb +lje +oPN +mKY +hRv +vvn +dXW +lCd +osS +xKy +dtb +dtb +pIn +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(132,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +dtb +dtb +dtb +mUq +vvH +olL +rGO +wfo +iUL +fHO +uGT +qHV +qfs +osZ +eAo +fkT +fIs +ucy +slZ +bsu +apm +ybp +gHM +ybp +ybp +fTP +xME +clm +xdw +bBq +dJT +clm +rZe +uJU +hkc +ijH +roe +urf +rQr +amQ +okY +gaM +bJf +upC +rlH +fSL +fSL +edt +rlH +rlH +oWa +oWa +sYg +qIl +pQi +oWa +oWa +xGM +bxU +xGM +sQm +pHi +dCI +muG +gOV +qxw +mZk +vSF +hrZ +ahD +cvQ +rgi +rgi +rgi +rgi +rgi +rgi +rgi +cvQ +xvt +lro +iKL +mkx +vcy +nVN +kwd +dre +mlp +uQi +nVN +oVN +qXJ +qHf +pfB +pfB +nWn +jmd +nWn +pfB +pfB +xgT +eKf +aou +xKn +eHT +gFi +eeG +uWW +qKq +iOj +mMr +cAe +uuP +bIS +gJs +rXB +hmW +cAe +txW +txW +txW +txW +kan +aXd +otW +ukF +sJF +vwd +ndj +dtb +qvg +xKy +dtb +iWP +kLH +kLH +oOw +uxn +uxn +cud +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(133,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +dtb +dtb +eIs +eIs +eIs +ajz +mwP +ksJ +xJz +rBD +xaJ +igb +aQN +lIR +eAw +iQh +ati +fJV +pck +okz +ybp +kxu +nMA +ybp +rCV +bRt +clm +vxO +tAb +tDP +clm +cIb +pgm +clm +xjl +ckK +aqb +qvU +xSY +qvU +rbb +bBb +mCE +rlH +xLb +buI +srm +nFq +bCe +oWa +lgk +mOF +sTP +nqW +pxI +uYT +xGM +tag +xGM +iIR +pCx +kuj +tmK +axD +oca +fai +erP +wgT +wgT +wgT +rgi +rgi +rgi +rgi +rgi +rgi +rgi +wgT +wgT +wgT +tDi +cmp +xQi +sWO +iNb +uaD +ogO +sUF +nVN +mXZ +uEE +rKj +pfB +oFC +oJG +fmb +gfO +hIF +pfB +eJI +hsL +vVr +ffT +bRq +gFi +bti +xZr +gFi +mRG +bti +cAe +xnN +voz +luj +iNq +cAe +cAe +txW +txW +txW +txW +txW +vkB +wAf +dtb +dtb +dtb +ukF +ukF +iWP +kLH +kLH +sEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(134,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +dtb +bmp +aGm +hNB +rPj +lMG +npt +qeJ +tIL +fWp +osZ +nbr +vKV +jrq +jbD +cHg +uNa +drE +ybp +kxu +uQV +ybp +vme +boB +red +gnx +poZ +gnx +odt +olA +lJk +tnh +hkc +nMe +iNo +pfA +pbd +nEf +qtj +lFM +hkc +rlH +wHO +wSb +gxD +cCX +nkX +oWa +fmL +xRH +mRW +gyE +nXH +uzE +xGM +gcz +lpB +rMd +nQk +qZk +tmK +maj +jcB +ijB +tGJ +sMq +fGO +vQQ +rgi +rgi +rgi +rgi +rgi +rgi +rgi +sMq +fGO +vQQ +lMy +ijB +ued +utF +eaI +jBk +dqV +kaw +lIM +lIM +pAZ +lIM +pfB +wFU +eSM +dJg +wIJ +xNP +pfB +pfB +soA +qKo +nzM +yhy +yhy +kDS +fDr +kTT +etc +xVe +cAe +dfz +lii +xeR +xWo +cAe +txW +txW +txW +txW +txW +txW +sOu +oOb +dtb +dtb +rJW +ukF +dtb +aXd +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(135,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +mGv +pCa +pCa +gJT +gJT +dtb +dtb +dtb +dtb +dtb +eIs +uOM +hlJ +rdx +klC +lig +mhQ +nEv +aGm +mPk +cMQ +mdg +mdg +qKa +dfA +ybp +ybp +wvu +rpF +ybp +mQH +lLq +ovo +uXN +gBq +wLX +pxd +bNP +dqj +clm +azh +pAz +myV +aLH +vVy +gcb +myV +bfo +xDX +rlH +amP +kFm +vPe +guw +sxd +eak +fEW +jhf +dtG +eov +qwT +xBZ +xGM +psm +xGM +iCV +rIK +czS +uXY +faO +jcB +ijB +ijB +wgT +wgT +wgT +rgi +rgi +rgi +rgi +rgi +rgi +rgi +wgT +wgT +wgT +czt +ijB +ued +rZR +rim +ddM +thJ +owH +lIM +tqW +lvi +lIM +lqJ +jQQ +nDf +xCf +uAg +pIg +tJa +pfB +roQ +auv +oQl +hXY +hbQ +qML +hCI +kjQ +mdt +glI +cAe +cAe +cAe +hZu +mxq +cAe +txW +txW +txW +txW +txW +qvg +aXd +gxe +dtb +dXW +dtb +dtb +dtb +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(136,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xka +nPV +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vSW +vSW +vSW +vSW +aGm +mXF +qWF +mjN +rCX +hNu +kcn +gGM +eIY +mPk +rFD +kkZ +vTZ +ckF +vzY +ybp +qya +nat +kFc +ybp +afT +hYG +nUa +luw +sTf +cWV +vyo +jkO +uEU +clm +bye +pAz +oti +gzO +cdY +mVO +myV +bfo +kfd +rlH +vey +pfD +wxp +gwb +nkX +oWa +mrY +ljL +tPw +wBK +tqy +mck +xGM +hjO +xGM +uwF +nQk +krJ +hfb +hxv +urL +nxE +ijB +xmr +hFM +kJl +cNP +rgi +rgi +rgi +rgi +rgi +dOr +kJl +skU +vHR +ijB +fub +udF +ivJ +tca +jBk +dqV +kaw +lIM +nOB +fni +lIM +mOd +aJp +msb +dWM +ogG +mOK +tXG +pfB +xBG +biF +fZm +swL +yhy +kDS +fDr +lFj +etc +pQo +xPk +uWo +cAe +cAe +cAe +cAe +txW +txW +txW +txW +sEF +aqt +gxe +dtb +smB +bJN +aRm +sLa +gEb +ldo +pCa +maG +oWn +qkf +oWn +tyH +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(137,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ett +igh +igh +igh +igh +veJ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +pCa +pCa +qCf +qCf +qCf +qCf +eIs +cNi +fLe +kOj +ckz +kqo +bdz +ldU +ozs +gag +eNg +tLi +ofk +vAE +wcQ +ybp +req +prK +iuT +ybp +bxb +gFc +peL +wLX +hfN +vCA +aEt +efG +tkP +clm +pha +pAz +myV +vuF +iVZ +hhe +myV +bfo +fQD +rlH +aWP +uao +hoy +nFq +bCe +oWa +sOg +juD +iZk +vqW +jyY +uYT +xGM +mVH +xGM +ouC +vTA +vFa +gFV +gOV +gOV +cVn +ijB +kRF +bjy +bzR +anE +dtb +dtb +dtb +dtb +dtb +anE +fDO +gyo +iro +ijB +mdv +nVN +nVN +lLb +jBk +yjq +wYk +lIM +eLi +rMi +lIM +cxw +oMQ +imM +uIQ +fUe +xgg +aLV +pfB +mlU +wPJ +clK +lrn +yhy +bti +ooc +gFi +nSH +bti +xPk +otc +lGW +fVr +dSE +xPk +xPk +txW +txW +txW +oOb +dtb +dtb +gjQ +pIn +uty +mKY +uty +svU +ldo +txW +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(138,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +psp +sVP +igh +gtn +gtn +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +aGm +eSx +lhh +vMr +iip +jzs +nwd +bdc +fzc +vGF +fMx +buK +cKV +tUH +erh +ybp +bzt +prK +jCN +bLk +wKe +giu +qMN +gkb +gHN +gkb +vQE +tof +qLl +clm +hkc +vLX +jxp +pMB +llF +kRf +amL +gSn +hkc +rlH +vrl +rlH +rlH +rlH +rlH +uzy +xzj +gCd +vZa +fsF +xGM +xGM +xGM +ahG +xGM +xGM +wxv +hSW +xDi +qTE +exD +ixw +cGG +kRF +kME +qZd +cvQ +dtb +uty +lhx +uty +dtb +cvQ +nAl +fRd +iro +ltE +eYI +wCk +vkK +axB +gJD +kWg +lIM +lIM +bGd +wLh +lIM +lIM +axp +ncN +hVd +paG +xXM +pfB +pfB +tWG +lbM +udE +pgg +yhy +bXe +obK +jYB +pHZ +vnM +mnp +etz +uxF +veq +wEN +dsQ +mnp +pni +aqt +aec +gxe +dtb +dtb +ukF +eiF +uty +hzt +uty +nrR +fBx +pCa +hFK +uty +mKY +uty +plT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(139,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xka +igh +gtn +igh +gtn +igh +igh +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +aGm +nxP +lHg +ieY +iwD +tAL +fBL +oiZ +kvc +oRq +oNB +uWE +xus +cEd +jBo +ybp +aTZ +lkD +qab +ybp +vgv +ckf +clm +nac +ygm +ihI +clm +kem +eks +clm +hkc +tVw +ctI +piV +tXP +eMV +jSu +gAm +hkc +rqv +eJZ +uMN +uzy +ojm +pjY +eCh +afb +jrC +smz +koP +xGM +csT +xXi +lyt +suj +xGM +lll +hYN +iQi +mhr +rak +aCl +nxE +kRF +mNn +gxt +cvQ +anE +cLn +kOl +cLn +anE +cvQ +sno +seO +iro +fub +eYI +wZL +bhQ +bZy +jBk +qOA +lIM +hop +xZZ +wLh +dlI +lIM +uuG +rbo +wCe +nNO +mrv +pfB +tRT +gxm +aoa +vph +qKj +vTa +lKT +eyO +mgG +cmy +wFV +vIJ +xsV +dNj +bbP +veF +fsZ +mnp +aFA +xKy +xKy +xKy +dtb +ukF +agJ +sTy +uty +uty +uty +svU +ldo +txW +wGa +mKY +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(140,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nPV +gtn +gtn +hjf +txW +pCa +nnG +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +aGm +aGm +eIs +aGm +qze +vBA +pAj +wvp +nxd +gag +bWt +rKO +kXC +nlV +uYf +hHo +qpc +mut +eel +ybp +huo +tDT +clm +clm +anW +anW +anW +eLo +pyd +dyB +eRh +bPH +vEv +kts +xpV +viI +vEv +bPH +eRh +osO +dFY +sQw +bbE +duM +qUh +tOI +ycT +hsV +lMn +tJt +fvS +uGd +xGM +xGM +vDq +xGM +qft +cKO +lmf +gOV +uIV +uIV +sLg +xaB +nvO +kJl +kJl +ses +uPL +glP +loq +wkP +kJl +kJl +fdu +vGH +xHk +wZE +wZE +nVN +vTe +sHl +ufU +lIM +sCy +dAb +lvi +qXo +lIM +prQ +uXd +cfJ +uXd +kxw +kxw +yhy +qQF +mTK +kGW +gjk +yhy +rrA +cyO +yai +gqV +vib +mnp +iSa +oMi +xjv +pUZ +gdc +mnp +ocH +rJW +ukF +ukF +dtb +nov +smB +fQa +akj +vIE +hvl +jZM +ldo +pCa +gGP +vIE +akj +vIE +jEF +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(141,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +tuB +igh +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +qgL +twQ +twQ +eHv +ykt +sfj +twQ +twQ +lJl +oDZ +aHU +rNJ +eIp +bYy +cDg +vOl +dAJ +knF +aiY +kIy +vKL +edK +dfM +svv +tpq +wQQ +fbx +eVu +eRh +rjU +anh +khL +hvz +lwH +vtp +wiB +eRh +tCd +ajq +bHU +uzy +snn +ddY +ead +hEC +jql +bNT +kFF +xGM +jdS +rIC +kUn +hve +xGM +xGM +cFU +gOV +uIV +kvd +hwm +kmu +nxE +vZu +eev +kJl +cIJ +cIJ +bMx +cIJ +cIJ +kJl +eev +ijB +wPa +ksn +thT +ubz +wZE +nVN +dPU +lIM +lIM +lIM +ycG +drC +laB +odc +prQ +hEH +nxl +wWQ +kxw +cNX +sfJ +qmQ +wnk +ufv +weI +yhy +lur +tqT +krO +uof +fob +xPk +dtu +bcw +bcw +oYW +xPk +xPk +xtz +ciV +pnd +bJW +giI +gLp +pIn +mKY +uty +uty +svU +kan +ldo +txW +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(142,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +pCa +pCa +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +igQ +twQ +miz +idk +iGb +dzI +uLF +twQ +rmk +cEM +jvv +vsa +pFG +ybp +vZD +edR +ogy +iAR +stB +aiy +wmA +edK +dfM +svv +vvI +rgH +xZx +sar +hQT +lEb +dbF +kWH +oER +qRo +slF +xJX +fDp +oCC +liZ +csG +uzy +uzy +uzy +uzy +xGM +xGM +xGM +xGM +xGM +fxi +eCK +qIE +suj +bbJ +xGM +bWJ +uIV +dtr +uqq +hwm +hwm +iYk +vZu +ijB +psN +xCp +xCp +mxU +xCp +xCp +eaQ +ijB +ijB +ksn +thT +thT +hWt +pKw +nVN +eTh +lIM +xIk +fvF +pXz +gxR +iuG +jde +prQ +rpg +oYd +sfX +kxw +hgc +yhy +hwk +uDQ +oaZ +irw +wZd +ing +iqN +mta +qkW +qkW +xPk +bKE +mSB +sZV +ple +mnp +rFt +nml +ons +pdK +miK +iLP +taZ +dBE +uty +uty +mKY +nrR +dtb +ldo +pCa +hFK +uty +hzt +mKY +plT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(143,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ohU +txW +txW +txW +txW +txW +txW +txW +txW +pCa +igh +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +kan +twQ +qYr +ruU +oOc +gMK +ktI +twQ +pil +gag +gag +ybp +ybp +ybp +geD +lNc +uAP +ybp +wrw +fKT +clm +clm +iyS +iyS +iyS +ixf +kKz +xNr +rIl +qxi +irg +ifE +jvE +bXi +daZ +lud +fgR +jgA +liZ +aNG +mWG +dtx +fXt +wxx +xGM +eSj +csT +aPA +cTE +enS +xGM +xGM +xGM +ocV +xGM +xGM +uIV +lyM +qJB +fjp +hwm +kmu +fTp +udm +vtW +nvj +nHJ +tAe +leK +ijB +nwC +ijB +fub +ksn +thT +ahi +wfG +doQ +wZE +lIM +lIM +xAE +lIM +qcI +ssz +lIM +lCX +prQ +prQ +prQ +prQ +prQ +nFV +prQ +cGE +uDQ +oaZ +irw +wZd +kFn +iqN +qrv +qkW +qkW +xPk +uSf +uEW +wAA +kkQ +mnp +lnS +nml +eRS +dsw +iBQ +ahm +sbg +pIn +uty +mKY +uty +ssR +igQ +ldo +txW +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(144,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pDm +txW +txW +txW +txW +txW +txW +txW +qLZ +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +dtb +twQ +jYk +sxO +udj +qDZ +sSz +tbO +cNz +aLX +iKZ +yiJ +rKR +usO +hKg +ahZ +fDg +ybp +ybp +ybp +iyS +nKw +irK +wtm +iyS +xbI +liZ +ecT +eRh +fzG +hXJ +alT +fXl +fvz +hPp +bDs +eRh +oiJ +liZ +pGy +mWG +oxq +mWK +oic +ftB +cti +pqd +xGM +xGM +xGM +xGM +xXj +oln +hve +tJx +xGM +djV +hCg +jAG +fig +hwm +hwm +del +cpq +mBI +arc +jEw +fub +eab +sPt +kOk +jAu +fGj +thT +thT +tPZ +lsj +rfs +cIi +lIM +ylY +fMu +sFv +dvn +cSf +utK +cSf +utK +sYw +bRo +nbQ +nbQ +jaB +prQ +hwk +oeW +oaZ +irw +wZd +nSO +iqN +tNi +qkW +qkW +xPk +uno +bqe +nHf +kkQ +mnp +mSb +nml +wjb +iBQ +iBQ +tvW +hyS +mGK +xhd +ujR +fhx +woT +gEb +ldo +pCa +gGP +vIE +akj +vIE +jEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(145,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +wkX +igh +igh +vSN +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dtb +twQ +mAl +hwp +fIM +ueg +wUz +dER +fcG +sYl +vIU +ybp +iAJ +eED +bzt +dql +nZB +kVd +luq +ybp +iAl +dbo +pRG +jPa +xGT +ehk +dTu +fvO +anW +sjb +uAA +vhm +uAA +uuk +uAA +sjb +anW +wWt +dTu +iuE +cCf +uKG +omo +ltJ +xGM +xGM +pzd +xGM +euO +nSV +biY +hyH +xGM +xGM +kmQ +xGM +xGM +xJr +gYM +mBs +msw +uIV +uIV +nix +uIV +uIV +vQP +vGu +cNH +wZE +wZE +iYf +wZE +wZE +cuG +ejz +qzU +ttH +lIM +lIM +aUh +lIM +lIM +ogh +prQ +prQ +tao +tao +tao +prQ +tao +tao +tao +prQ +yhy +yhy +yhy +yhy +yhy +rUv +aIg +myq +sAk +sAk +xPk +xPk +xPk +xPk +xPk +xPk +dtb +mEf +eRS +bDW +iBQ +gpa +taZ +dtb +pIn +uty +uty +uty +svU +ldo +txW +wGa +uty +uty +mKY +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(146,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ohU +txW +txW +txW +txW +txW +txW +txW +vCE +igh +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +vIx +vIx +twQ +wZy +ehu +kbZ +tSF +rKd +xnB +cmu +xmv +vNF +ybp +geD +wCr +bzt +bzt +iIG +vGr +ueu +ybp +kxl +mmR +jZW +kvC +iyS +rHo +liZ +iMV +cqe +gxf +mWr +tat +aGH +nBw +lZd +sjb +dAM +rxp +liZ +imC +oGH +wIV +tXx +mYT +bie +xGM +xgx +xGM +jqg +uor +fUX +hlD +sXE +xGM +iTT +aVg +xGM +knJ +jVw +odV +aLn +aFa +vzX +byi +aUY +eDo +iSS +rqD +wIc +vBi +wXo +ycv +cGc +cGb +cnY +svK +vgV +wRq +lIM +nSk +jrZ +vZF +lIM +uuC +prQ +jlF +dtb +dtb +dtb +eho +dtb +xKy +dtb +gfd +wBL +rUO +uTL +kHn +iwh +csp +csp +csp +sAk +aid +iDt +dtb +aXL +ukF +jtc +siN +dtb +mEf +jFv +iBQ +moz +tvW +taZ +gjQ +dBE +mKY +hzt +uty +cff +sEF +pCa +hFK +uty +uty +uty +plT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(147,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +pCa +pCa +nPV +igh +gtn +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +rKr +dtb +twQ +twQ +kDN +uQa +mTg +twQ +twQ +cfm +cfm +cfm +ybp +ybp +xMy +bzt +bzt +jkE +nLg +cij +rDY +loK +kCi +nKp +vwx +idN +mhb +liZ +nIu +kah +rAN +bOl +cXR +rSu +xcD +fOJ +sjb +fYd +rxp +liZ +xtC +tce +ppN +kLL +yeg +oOz +xGM +vmS +xGM +xoR +hfe +iVa +isU +fqs +xGM +xGM +kBl +xGM +kjR +tFZ +dvi +pvV +gUh +tJW +kbz +dUt +wOG +iaU +rqD +mpE +baF +gkm +ycv +qBu +bUi +qJr +jEC +lYm +dWu +lIM +bxW +tnR +iGZ +lIM +uuC +tao +dtb +xKy +dtb +rUO +dtb +xKy +dtb +dtb +uQr +wBL +wGO +kiU +ukF +xKj +oZy +raC +wew +ejV +dtb +agJ +ukF +osS +dtb +aXd +gbY +ukF +nml +pOQ +iBQ +iBQ +tZC +hyS +xKy +sTy +uty +uty +uty +svU +ldo +txW +wGa +mKY +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(148,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +igh +sVP +pCa +nnG +pCa +txW +txW +nPV +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +bPd +igQ +dtb +twQ +twQ +twQ +twQ +twQ +bmp +qNl +beF +ttX +opN +ybp +cFp +uHD +giL +pPi +qIG +jDn +ybp +pKk +wtb +iWl +jvM +iyS +fln +liZ +nIu +kah +qMS +sUI +cZn +iTn +bXA +fwo +sjb +gWp +rxp +liZ +ftG +lMX +qlY +hOU +pNC +sjr +xGM +ood +tXg +eVG +stR +hkI +dmo +bLz +dsI +rXi +yet +xGM +vSM +eYY +bNx +gBh +saW +kbz +kbz +ito +tWm +qpE +rqD +mpE +odb +sCe +ycv +wVQ +ihO +rge +qdR +jHb +sJY +lIM +yiz +qGC +vsj +lIM +dPt +tao +dtb +dtb +bZE +wRv +bZE +bZE +bZE +rUO +uQr +wBL +qud +dtb +rUO +dtb +xKy +ukF +dtb +dtb +osS +dtb +rKr +xKy +ukF +uaM +ffs +dtb +nml +yde +cGf +mjJ +fyT +hyS +xKy +mGK +pmu +nSB +hiC +jZM +ldo +pCa +fAl +uxn +mJR +uxn +jzD +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(149,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +xka +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +rKr +jbJ +sLa +sLa +sLa +sLa +sLa +cRl +kan +ldo +txW +txW +txW +ybp +dTN +rDm +tNK +wNx +nJU +vBf +bYy +rqn +wik +jyw +aVo +nHK +vtk +kJa +jDi +sjb +sjb +qaH +pYN +oCm +ubV +mFk +sjb +sjb +crQ +vIM +eGI +cCf +iiR +tpv +mkB +xGM +xGM +vVC +xGM +cqT +bEy +hPG +wsm +azo +abg +xGM +aVg +xGM +xGM +dkw +krN +pvJ +rXO +hNN +mlm +cbf +chq +oVJ +rqD +gMr +bBC +dQv +eUv +rpI +rvl +muf +lqT +pXQ +lIM +lIM +lIM +vEG +lIM +lIM +uhl +tao +dtb +rUO +dtb +dtb +rUO +dtb +dtb +dtb +gfd +wBL +dtb +ukF +dtb +ukF +dtb +dtb +jkW +bMh +xKy +qip +fnp +bYG +dtb +aXd +oIV +dtb +qyj +qMO +unD +unD +omT +gpn +xKy +xKy +dtb +xKy +xKy +dtb +ldo +txW +txW +pCa +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(150,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +jbJ +nQc +uty +uty +uty +uty +uty +jBa +cRl +ldo +txW +txW +txW +qxp +qxp +msy +oeU +msy +qxp +qxp +ybp +iyS +pAx +cKU +wNY +iyS +iso +snf +njn +sjb +wjr +sUI +ecs +rxj +foW +rna +rHF +sjb +jVg +qca +toQ +mWG +gXX +aWH +fLU +xGM +qTk +blV +rXi +mFA +hRp +xCN +bMf +iYz +yhx +tXg +oGO +nDl +xGM +xGM +xGM +xGM +xGM +xGM +xGM +xGM +xGM +tNB +euf +tLu +lIM +lIM +lIM +lIM +lIM +lIM +lIM +lIM +lIM +doJ +wHB +ris +doJ +wHB +uuC +prQ +jlF +dtb +dtb +xKy +dtb +dtb +rIb +dtb +gfd +wBL +fhM +brC +dBe +rFt +fhM +rUO +xKy +ukF +igQ +vSN +kan +xKy +dtb +nlF +xuN +dtb +dtb +dtb +ukF +ukF +igQ +dtb +igQ +lCd +xKy +xKy +nov +dtb +ldo +pCa +maG +oWn +qkf +oWn +tyH +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(151,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nnZ +pIn +uty +mKY +hzt +mKY +hzt +mKY +uty +dya +nnZ +txW +txW +txW +jAz +uQI +eNT +lXv +plK +mqr +jAz +ejG +iyS +eZo +qXs +eZo +iyS +eWL +iso +dAq +ler +pte +iWu +wyh +rSu +smT +lZC +kyu +wmf +fQH +eyr +eRp +mWG +gxn +xcb +jef +xGM +xGM +ilV +xGM +xGM +tXg +xGM +xGM +rXi +xGM +xGM +fbS +vtc +cTE +elx +nDt +dml +npk +hOJ +cBg +xXT +rwc +rWC +iID +fUc +oZx +aFf +pft +uWh +woY +fbA +wMb +vGT +xQn +bUk +aFf +uui +uYr +niA +uhl +prQ +uhv +cGC +gDE +cGC +uhv +cGC +fQG +cGC +uhv +qBD +wYi +pVs +pVs +pVs +wYi +jrA +igQ +wTv +osS +rKr +dXW +osS +ukF +aXd +oIV +igQ +tFe +tFe +wxd +dtJ +wxd +dtJ +wxd +igQ +qip +jEQ +ukF +ukF +ldo +txW +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(152,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +stE +oPN +uty +uty +uty +uty +uty +hRv +ndj +ldo +txW +txW +txW +jAz +xqd +djk +lrx +vbO +kxp +jAz +txW +iyS +asj +roO +eGZ +iyS +vvX +caI +xxS +sjb +vtP +bSI +ezu +nIq +qlu +bDw +eIC +sjb +hOF +sMe +uZT +xGM +xGM +xGM +xGM +xGM +aqL +blV +mrt +jop +maW +cUH +tUa +qzR +vpA +xGM +bNJ +xGM +xGM +xGM +pqv +xGM +xGM +xGM +xGM +xGM +xGM +dkE +iID +frb +prQ +prQ +ehn +prQ +prQ +prQ +prQ +prQ +prQ +prQ +prQ +prQ +prQ +lIM +ntw +prQ +dHZ +xnc +lIr +cGC +dHZ +cGC +lIr +xnc +dHZ +wYi +wYi +xSP +rcJ +eUK +wYi +wYi +roX +tmg +imk +orB +rUO +ukF +ukF +nlF +oKw +dtb +aXY +gvU +wxd +fAd +kaR +gxZ +wxd +dAE +awX +qvg +fma +awX +ldo +pCa +hFK +uty +hzt +mKY +plT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(153,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +igQ +stE +wPS +wPS +pmu +wPS +wPS +vEh +dtb +ldo +txW +txW +txW +jAz +jAz +sTn +vdA +bxM +jAz +jAz +fwv +iyS +wqQ +sms +vjI +iyS +anW +siA +anW +sjb +snr +rXa +wcw +nKP +vVp +roj +plG +sjb +anW +anW +haE +xGM +cZv +xGM +qwC +uGM +mUW +fNA +byt +vRp +lIO +pvg +sAm +tCz +jGK +sAm +mSS +xGM +hHj +dEj +xzU +ixZ +rMh +hiR +dkQ +cta +aCv +gWf +dlO +fUc +oBV +uqK +uqK +uqK +tHn +jUs +wog +coK +vVO +pYc +tgN +vSR +iAX +pIt +vhT +prQ +opo +cGC +gmu +cGC +opo +cGC +qnY +cGC +opo +wYi +omz +tyQ +tga +tXI +bAl +wYi +aVD +dTT +aVD +aVD +vYb +ksW +rFt +aVD +aVD +dTT +aVD +wxd +wxd +aBZ +iBB +gZW +wxd +wxd +mkR +mkR +mkR +mkR +mkR +txW +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(154,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +pCa +vii +bmp +nzz +dtb +igM +dOn +bGe +nzz +dtb +bmp +ldo +pCa +opN +txW +txW +jAz +fgB +akE +fgB +jAz +pCa +txW +iyS +iyS +iyS +iyS +iyS +txW +txW +txW +tHY +oiR +ccj +clB +clB +clB +rTY +uHm +tHY +dtb +xGM +oGW +ctY +eiW +dZa +tym +eiW +kop +gaL +eiW +eEB +tym +bxV +sDD +ueP +jOL +ofC +iBn +xGM +sId +tAK +wod +gZi +qAt +mGT +aID +xkM +jWy +tQR +iID +vSi +tHn +uqK +uqK +uqK +ete +gDa +mnb +viP +prQ +uzJ +frD +ojC +prQ +fpu +bZp +prQ +aEB +bAk +pxD +lVw +opo +xQt +nlQ +bAk +uyy +wYi +dZC +qYy +saU +iaN +aeb +wYi +cXw +nZq +meC +mHT +mHT +lOr +mHT +mHT +dSx +nkk +vUE +cby +uVY +vZb +xRV +pvC +qNw +cby +oKg +wZa +bwp +tMN +mkR +mkR +gGP +vIE +akj +vIE +jEF +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(155,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vii +dtb +dtb +igQ +dtb +igQ +dtb +igQ +dtb +igQ +ldo +txW +txW +txW +txW +txW +fgB +fCH +fgB +txW +pCa +txW +txW +txW +txW +pCa +txW +txW +txW +txW +tHY +aDG +tse +clB +clB +clB +bpK +lxp +tHY +dtb +xGM +xGM +xGM +rJH +xGM +cQk +iHR +uIH +npb +rvc +sBX +xKE +oDQ +bZk +xGM +mrt +ekk +xGM +xGM +pgD +qEP +iFL +jFE +jiB +tJp +jnZ +eea +aCv +gbh +iID +fUc +oBV +uqK +uqK +uqK +tHn +rGr +tSs +viP +lzO +eod +xbH +pRK +prQ +prQ +prQ +prQ +tEp +tvI +qtO +erO +aXV +erO +kmn +tvI +dhy +wYi +bTA +xFX +gwa +qJf +lrG +wYi +hOH +pbR +tye +idq +oNA +eRG +kgS +sVU +pqG +fUy +nHj +uaj +tEI +pMO +sSL +pKJ +dRS +cby +vzp +mkR +vFN +ggt +njO +mkR +wGa +mKY +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(156,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +ewt +kLH +kLH +kLH +kLH +nnZ +kLH +kLH +kLH +kLH +ewt +txW +txW +txW +txW +txW +fgB +psO +fgB +txW +pCa +txW +txW +txW +txW +pCa +txW +txW +txW +txW +tHY +tHY +quT +qHL +fEP +yan +dBd +tHY +tHY +dtb +dtb +xFL +swk +hcQ +iRG +xHu +tqm +gsL +sXp +rgh +hPF +wnm +epE +nUM +uKI +gUE +rJk +fFg +xGM +iRb +gbp +dMM +bGN +doZ +doZ +doZ +doZ +doZ +ygY +iID +mfC +tHn +smX +hmV +cyw +tHn +dLA +tSs +mfA +lzO +sZP +jdo +ykA +mPX +nug +jxY +opo +jdT +oTR +fMC +tId +opo +oYu +tqq +oTR +mpd +wYi +wYi +pVs +vIr +pVs +wYi +wYi +bJb +qJy +qBO +kGV +dhD +gXP +tZu +evz +rcH +qJy +iGr +bGz +iZa +pMO +nrz +pKJ +xyI +cby +pPq +wZa +qCH +nzG +dTY +mkR +hFK +uty +hzt +uty +plT +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(157,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +bLa +txW +txW +pCa +txW +txW +txW +txW +pCa +txW +txW +txW +txW +dtb +tHY +tHY +oNY +sSJ +plG +tHY +tHY +dtb +xKy +xKy +xFL +oSu +pHl +hXB +tiP +doc +gQS +xTZ +qpu +osR +rVA +oyi +icE +bEU +dxf +rtm +hQM +xGM +doZ +cFl +doZ +doZ +doZ +kim +fpe +xwG +doZ +oRE +iID +nRD +oBV +nqz +tkr +bPW +tHn +gDa +tSs +qCd +lzO +tQX +hGd +tUW +mPX +hJA +fFY +opo +uxN +pQE +fMC +oCv +jdC +eRI +tqq +rmz +nSE +wYi +jns +gEt +kNd +cSO +fhR +wYi +sKt +qJy +qPH +kGV +kGV +kGV +kGV +kGV +gyg +qJy +tDc +cby +oFG +shs +ips +pqN +hSG +cby +vzp +mkR +nTe +hBm +wDJ +mkR +wGa +uty +uty +uty +xGr +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(158,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +opN +txW +txW +txW +txW +txW +opN +txW +txW +txW +txW +txW +txW +hwY +dYf +vwR +aqt +aqt +mzt +nnZ +pCa +pCa +pCa +peJ +pCa +pCa +ewt +dtb +dtb +dtb +tHY +tHY +tHY +tHY +tHY +dtb +jjh +rJW +dtb +xFL +sWk +aop +fca +fKL +mVU +bWz +cOp +fgX +wJF +xpl +hlM +gCT +pOY +aiO +pwO +rNc +xGM +uyB +ram +ipO +qFY +qnx +bUK +sxP +bUK +ikS +tsT +iID +nYn +jBO +uAt +tPk +plA +fwJ +iTN +sGL +bhK +lzO +vMd +kbV +vSI +qgy +xgw +vWs +opo +cLR +nTT +fVL +fsu +opo +gWa +pce +nTT +wcg +wYi +lwB +xMn +lJm +cSO +kjn +wYi +hOH +sYK +rXG +geP +ceR +pso +bPm +pzu +dyy +qqv +deK +cby +hUC +hrW +ctx +pSo +hUC +cby +nzv +wZa +aLj +hac +uim +mkR +fAl +uxn +mJR +uxn +jzD +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(159,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +bLa +jbJ +num +oQT +sLa +cxq +wUH +oUk +tLY +oWn +lDa +aqt +aqt +owu +dtb +dtb +dtb +ldo +jbJ +qkf +tUc +oOb +igQ +ukF +rJW +rKr +xGM +xGM +xGM +xGM +xGM +xGM +ipf +gjg +gjg +gjg +hHB +xGM +xGM +xGM +mrt +ekk +xGM +xGM +mVZ +qsf +fWR +tsA +qnx +yft +eOO +amg +ikS +aUO +tSQ +uZV +oBV +cqN +mOx +epD +tHn +lfD +tSs +hTH +lzO +rUT +uiI +bBS +lzO +cjR +czM +opo +vvz +utv +bwX +wzh +jdC +dXK +boO +sVZ +juE +wYi +vxq +xMn +kNd +cSO +kqp +wYi +aeG +gSe +aXP +kGV +dhD +gXP +kxz +evz +oCK +gSe +sbl +dIN +oAe +jCS +tHc +jCS +qjJ +dIN +lna +kam +mty +kam +lna +mkR +dtb +dtb +dtb +dtb +dtb +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(160,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +fFO +pIn +uty +uty +uty +dya +pIn +uty +uty +uty +svU +dtb +dtb +dtb +dtb +dtb +dtb +ldo +gds +uty +ceh +oOb +rKr +vCa +hrw +jbJ +sLa +qkf +sLa +gEb +dtb +xGM +xGM +dIW +uFk +wbt +xGM +xGM +xNN +xGM +cFd +gNX +xGM +qyH +ykr +pjJ +uEL +tPe +jUV +joj +pfE +vxl +ieH +ldS +iID +uam +tHn +cZg +qCu +cZg +tHn +lpX +tSs +iGm +lzO +lzO +frH +lzO +lzO +lzO +jNR +opo +cGC +tKG +jdC +opo +opo +opo +jdC +acK +cGC +wYi +wYi +pGq +kNd +pKf +wYi +wYi +egF +jCB +rml +kGV +kGV +kGV +kGV +kGV +rml +jCB +egF +dIN +hAa +rHO +tcY +rHO +bJw +dIN +iqP +stZ +efZ +stZ +dFi +vjS +vjS +kcA +vjS +vjS +dtb +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(161,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +xmx +sJF +wPS +bld +wPS +ndj +bwF +uty +uty +uty +svU +dtb +dtb +dtb +dtb +dtb +dtb +ldo +oEa +akj +lJr +oOb +kan +rkG +mog +tvT +uty +mKY +uty +svU +ukF +dtb +xGM +vBz +xKl +xeK +xGM +qhu +rVQ +xGM +lTA +iFK +xGM +bxA +ycq +qoX +tIQ +rtB +ihh +auq +wdU +tmz +ikS +tsT +iID +gVg +dTr +hcq +kmD +pUw +pDp +jMt +jSP +jrf +iKD +xIR +bQX +bzG +cvG +bzG +npI +mJt +bzG +cbm +bzG +gPt +gKd +bzG +otJ +eDH +uKb +vCN +pVs +paw +kNd +apI +pVs +nNx +drt +rSQ +rJa +dIN +aRa +wdK +kcg +dIN +inJ +rHc +rqk +sEM +luZ +aSW +rLL +vCV +ikn +sEM +tDE +bzi +npd +oGc +wYD +wmR +mVd +aUI +pMY +vjS +vjS +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(162,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +pCa +txW +xvR +dtb +dtb +omF +dtb +gdA +lje +xZG +bld +hiC +jXs +rNP +jjf +mQv +dtn +dtb +dtb +ldo +gds +uty +ceh +oOb +xKy +lzL +rKr +hFK +mKY +mKY +uty +plT +rJW +dtb +xGM +pdn +wrZ +tIR +xGM +ras +dAi +xGM +xMr +mrt +xGM +qKf +wde +uur +mDT +aXS +ihh +qot +pKy +ylM +doZ +glN +aJV +hIP +oBV +sfn +cdX +siF +gKd +xSn +tbp +iVm +tGf +oxh +dxm +oxh +oxh +oxh +aMt +oxh +gVz +pEE +jNN +yjW +bCS +yjW +yjW +haG +yhi +xwW +cLW +kNd +lJm +wvS +xZv +dHN +cgy +auK +lvH +jNU +bfa +gIX +ixV +rEz +pVK +qJy +pNp +dPE +luZ +cuH +gkM +mdh +ikn +wcX +jBl +soR +vgh +kWs +sWI +wmR +cBK +olT +ruK +yeA +vjS +pCa +pCa +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(163,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +pHK +jbJ +pts +xKG +bJN +wBX +aRW +ith +qkf +sLa +cRl +pIn +uty +uty +dya +dtb +dtb +ldo +cbn +ujR +dQH +oOb +xKy +vkN +hqw +pIn +uty +uty +mKY +svU +rJW +dtb +xGM +xFL +xFL +xFL +xGM +ukF +dtb +xGM +cYs +lKX +xGM +lrA +dct +pTM +ohq +ltR +ihh +nol +eOO +cqi +ikS +tsT +aZQ +xNG +inK +bwz +nET +jgY +otz +hoX +siM +sxs +kZy +jel +gjq +jel +mfK +krq +yhi +eUn +jmo +jmo +hUs +jmo +gKd +ofv +rBk +lBZ +nnM +vCN +pVs +pdm +cRu +iwG +pVs +gyH +auK +auK +auK +dNH +bPt +umS +hSZ +pPQ +bNM +xkc +fFS +nAh +pww +sDn +gqv +bvA +pkz +meK +qWh +xDC +dsx +tos +lDb +rnQ +hOw +vIt +kli +blS +kcA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(164,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +txW +qgr +pIn +uty +uty +uty +dya +dtb +owb +uty +uty +dya +ktZ +uty +uty +dya +dtb +dtb +ldo +pSe +uty +rwl +oOb +fNq +rJW +rJW +mGK +wPS +hCz +hiC +jZM +rJW +ukF +dtb +qNl +beF +ttX +dtb +ukF +meN +xGM +fwc +cpI +xGM +gVd +faf +pCg +uah +iqm +djZ +cbq +vXB +sgx +aEh +luA +iID +mrU +tHn +tHn +tHn +tHn +tHn +lOy +xFo +rrI +edx +aoW +edx +aoW +edx +jOQ +yhi +dHJ +sOJ +sOJ +tHn +tHn +tHn +tHn +gKd +vbM +gKd +tHn +trx +icz +trx +icz +trx +qXU +auK +fAJ +auK +dNH +oZr +hVr +gtk +pPQ +iLU +qJy +npv +kMO +qkQ +xla +xOi +ugt +kqy +sLu +hYy +dXq +mVL +trE +noF +wmR +hbM +xXR +oJL +xSR +vjS +pCa +pCa +pCa +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(165,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +bLa +gds +uty +uty +uty +cff +omF +dBE +uty +uty +cff +lZG +uty +uty +dya +dtb +dtb +ldo +bOW +mJR +ndj +oOb +txW +dtb +ukF +aNW +bJN +qkf +sLa +gEb +rJW +igQ +dtb +xKy +ukF +ukF +ukF +ukF +hIC +xGM +mrt +bzQ +xGM +xGM +ied +uFK +vXT +rLq +qnx +wdU +qhh +tmz +ikS +tsT +dlO +ihl +ehI +gkH +bVU +ofc +gKd +ylw +xFo +dms +aoW +ssZ +ozv +nvE +edx +rfg +yhi +dHJ +uqK +uqK +tHn +vhd +fgK +mAT +gVk +kAG +gVk +gYo +veh +wWf +nNS +cNU +icz +gyH +auK +auK +auK +dNH +fnP +lkL +gPE +pPQ +bNM +qJy +kQf +uTt +lbz +aSW +rLL +vCV +kOb +dui +deb +bNK +xpt +bDn +asy +dXF +fMl +tIr +ieJ +uNz +kcA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(166,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +txW +txW +bLa +pIn +uty +uty +uty +dya +dtb +owb +uty +uty +dya +pIn +uty +uty +dya +mnl +kLH +ewt +aqt +aqt +aqt +lAM +pCa +pCa +dtb +pIn +mKY +uty +uty +dya +rJW +eWP +rJW +wCR +qOf +bit +dtb +agJ +xKy +xGM +riX +ekk +qjo +xGM +uyB +awq +idQ +tLv +qnx +bUK +sxP +bUK +ikS +aUO +iID +ihl +pMQ +gkH +moM +oKc +nQq +mFU +ajA +dms +aoW +ugr +weY +rpH +edx +tjC +gaD +dHJ +uqK +uqK +tHn +fOG +ghT +nrC +vcN +iGL +mbB +xsT +gEQ +tOT +myv +phe +pzD +nUb +tZm +auK +gBP +hIl +frg +ygp +wRt +ikQ +wHK +qJy +pNp +raM +luZ +rJc +obY +hZs +ikn +nRA +wsY +qAv +cna +vjJ +yfE +wmR +oQt +wzN +mTb +izQ +vjS +pCa +pCa +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(167,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +pcz +stE +wPS +bld +wPS +ndj +igQ +stE +mJR +wPS +ndj +ydq +wPS +wPS +ksO +ldo +txW +pCa +pCa +txW +txW +txW +txW +txW +dtb +hFK +uty +hzt +uty +plT +xKy +rJW +wCR +vSN +fnp +yif +kan +xKy +dtb +xGM +mpG +iQZ +xIv +xGM +xGM +iHo +xGM +xGM +xGM +xMk +hPb +fjn +doZ +vbA +iID +ihl +oUh +gkH +etO +mbl +gKd +lhL +eDH +rkE +xJC +fvD +anZ +wnQ +fsP +jkk +wlQ +jkk +fsP +fsP +tHn +dXh +eZk +mZM +jIJ +hPm +jIJ +mOD +crO +abJ +lTc +rgV +icz +hCA +iOf +wKw +tQe +dIN +wGV +kwG +oye +dIN +qwX +pIM +jdn +sEM +luZ +eSO +cds +uMK +ikn +sEM +aLw +qIH +pLM +joz +ose +wmR +qEc +jvN +obU +vjS +vjS +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(168,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +nrr +vQb +dtb +dtb +omF +dtb +gdA +rKr +dtb +pPT +dtb +ewt +kLH +kLH +kLH +kLH +nnZ +pCa +pCa +txW +qyh +txW +txW +txW +txW +dtb +pIn +uty +uty +uty +dya +rKr +kan +igQ +nWh +qzA +nov +rxB +uSp +osS +xGM +xGM +qnV +duA +lIL +viu +rPm +mrt +ipM +xGM +pNP +qTi +pNP +pNP +ktW +iID +ihl +vcM +tHn +bLX +xyA +tHn +nPK +xFo +dms +aoW +ugr +iXs +gLv +fsP +jNd +nuN +cHV +gLi +jMb +tHn +tHn +tHn +tHn +fxB +kJH +fxB +tHn +trx +trx +trx +trx +trx +aVD +euI +iVR +xYD +kGV +kGV +kGV +kGV +kGV +tfH +iVR +hsM +elt +eBM +hNF +fWK +bIq +giG +dIN +flG +ihL +odX +ihL +oIc +vjS +vjS +kcA +vjS +vjS +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(169,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +pCa +vzq +bLa +jbJ +pts +xKG +sLa +cRl +dtb +igQ +omF +dtb +ldo +kaB +pCa +txW +peJ +pCa +txW +txW +txW +txW +txW +txW +txW +txW +dtb +oEa +sUm +akj +vIE +lJr +nzz +nuy +rKr +btY +aXd +tCe +lRC +ltL +kan +igQ +xGM +ayE +okU +ydB +sAm +eSJ +xGM +xGM +xGM +hyo +kbX +biu +pNP +sDT +sgB +ihl +aZb +gkH +srG +ofc +gKd +ylw +xFo +dms +aoW +koS +czA +ybr +fsP +tBy +uTb +hcI +iBs +pSA +oSh +fsP +jkv +czf +jsj +hxD +fid +mHT +fae +jcm +mHT +dEO +ltY +nDp +gVu +mgv +tCA +kGV +aEN +ejP +ffE +evz +nRp +mgv +qWf +aVD +qjJ +jCS +tHc +jCS +qjJ +dIN +doy +fRp +oJW +fRp +doy +lif +txW +txW +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(170,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +adp +isG +pIn +uty +uty +uty +dya +fOX +jjf +xKG +sLa +slS +pCa +peJ +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pIn +uty +uty +mKY +uiG +kan +lWy +mUI +sLa +fvL +igQ +osS +mog +vkB +dtb +xGM +xGM +xGM +xGM +hJv +uBQ +xGM +tVp +gxI +uHV +kMZ +oTz +dFr +csm +eqF +fmA +pMQ +gkH +jSH +oKc +qZZ +mFU +dQJ +ctN +dVp +dVp +dVp +dVp +fsP +dsn +puC +hcI +jRm +xLX +gMy +fsP +dxF +paI +paI +paI +ntk +qkz +pML +fnB +mHT +jdL +aFg +wUs +xoU +pbR +tgX +oCJ +bAI +nmY +rSe +jjI +uIg +fUy +tDc +jMr +rhz +xCF +dXQ +hZX +rhz +jMr +nYG +kYB +kdR +wgg +cRD +lif +txW +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(171,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +pCa +pCa +fEZ +jyK +sJF +wPS +vwd +wPS +ndj +pIn +uty +uty +uty +vnt +txW +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +sJF +wPS +mJR +wPS +ndj +pCa +qSr +mKY +uty +xba +vkB +jTU +awX +ukF +dtb +igQ +osS +kan +xFL +ryk +jfE +xGM +nbo +tJr +pvY +jAq +lYF +dFr +uSn +dAx +qck +pou +gkH +fuk +mbl +gKd +gPj +xFo +qxH +dVp +qpP +sfP +bzz +fsP +bgz +gNB +tfl +ind +uWy +pAK +fsP +tSB +fbE +gNp +udz +cMw +mHT +tNN +dPk +mHT +qFF +ihv +chH +dPn +qJy +cFS +kGV +kGV +kGV +kGV +kGV +wfr +qJy +auc +jMr +mOk +laM +ubC +koi +egr +jMr +jji +gzX +nCP +uxE +vvy +lif +pCa +pCa +pCa +pCa +pCa +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(172,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +pCa +txW +txW +txW +kHR +fev +uXh +bSB +nnZ +kLH +kLH +odY +uty +uty +uty +vnt +peJ +pCa +txW +txW +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vCy +uty +uty +aNF +nWh +dtb +dtb +ukF +dtb +dtb +bit +igQ +xFL +wEl +qKW +xGM +evU +hqA +pvY +tkC +uoH +kvx +bRC +xfF +dpz +vcM +tHn +dWA +qiq +tHn +vdk +xFo +aTa +dVp +ltl +wDu +cSi +fsP +dhA +gNB +tdw +nsE +iGz +mtC +mtC +mtC +mtC +mtC +rCW +mtC +mtC +iEK +mtC +mtC +hij +xkB +rLM +spt +qJy +diz +kGV +aEN +ejP +uEY +evz +mPc +qJy +nHj +ifQ +xfx +gai +jVW +gai +ylO +jMr +wBn +eLJ +fNh +dgh +mze +lif +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(173,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +cur +txW +txW +txW +txW +txW +cRG +bYA +fEl +uhx +pum +pCa +txW +txW +igh +igh +sVP +bIU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mND +uty +mKY +xba +uSp +agJ +ukF +ukF +ukF +qip +dtb +rKr +xFL +ruY +rMt +xGM +jrk +fzR +nrH +rXm +dYp +dFr +lRL +rMw +hCW +dCq +gkH +hcA +ofc +gKd +sWm +ppO +kgo +bYD +vlY +vNZ +wnn +jIQ +loa +cKb +uhy +diV +diV +diV +vQW +wQd +bAz +aar +rVy +epP +uFJ +jqp +kAV +mtC +fgz +pCK +lYk +wHh +sYK +tgX +uBO +bAI +mvl +gAE +uAd +kaV +qqv +iGr +jum +xfx +gai +xrO +gai +fyi +jMr +azE +rNe +mWJ +rNe +soQ +lif +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(174,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +tDx +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +jPK +paF +wPS +grg +ukF +xKy +dtb +xKy +ukF +ukF +xKy +bit +xGM +xGM +ebd +xGM +kcr +eoe +eVi +jGD +trk +dFr +jDj +bYS +nlc +gfH +gkH +moM +oRc +iCx +hXH +sGL +dms +dVp +oyl +uMX +xSp +fsP +kqq +baL +lBw +dKF +pNf +ggl +iQg +ugO +nzT +vfh +oUN +qvO +wZS +uEJ +cbS +mtC +cUz +bhh +oOi +amG +eHx +gDp +mHT +mHT +lOr +mHT +mHT +cCS +lvq +bAd +jMr +fFJ +mfo +saf +wer +prB +jMr +vfp +uZl +iZi +kRc +lif +lif +pCa +pCa +pCa +pCa +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(175,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +txW +txW +txW +rQU +pCa +fXL +pCa +rQU +txW +txW +txW +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +igh +igh +xMU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +sEF +nhJ +sLa +feq +flp +fBx +rJW +rJW +lMp +rJW +ukF +xKy +tjV +xGM +nMd +eYa +xGM +xGM +xGM +hyo +cvm +hMP +pNP +uNU +hmt +hCW +mbf +gkH +dsG +mbl +gKd +aEg +aIZ +eoS +dVp +dxJ +kmV +iiF +fsP +oPY +tCT +lMM +tBC +bRZ +diV +dpi +aRX +sNy +lJZ +kpj +sIK +oPj +gKz +adH +mtC +kGV +jVJ +mHT +aVD +dTT +aVD +aVD +qNl +beF +ttX +aVD +aVD +dTT +aVD +kse +kse +ydP +bfz +wgY +kse +kse +lif +mPt +lif +mPt +lif +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(176,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xka +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +txW +txW +pCa +txW +txW +txW +rSf +txW +txW +txW +pCa +txW +txW +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +kaB +pCa +pCa +pCa +kmU +nQc +uty +mKY +jBa +wBX +ukF +agJ +iXn +sVD +ukF +qBd +rwz +xGM +xGM +djx +gOr +vzZ +xGM +xGM +xGM +pNP +pNP +uwV +rxV +efL +cfZ +tHn +tHn +tHn +tHn +tHn +diV +aBk +diV +diV +diV +diV +diV +diV +hOZ +diV +diV +pim +diV +mtC +mtC +mtC +izI +bRd +izI +mtC +mtC +mtC +mtC +dwl +dXD +mHT +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +txW +kse +sEG +wlz +dXY +kse +txW +pCa +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(177,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bIU +hIM +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +rQU +lGA +txW +gVw +gVw +gVw +gVw +gVw +eKk +fzL +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +qSr +uty +uty +uty +uty +xba +qip +qvg +mgP +ukF +ukF +wbh +wLQ +mLG +xGM +iQV +heg +uXn +qrL +nDt +jxq +wup +nzF +vhB +vhB +nBl +qZB +cyy +vSH +rUp +fSJ +vGm +qQQ +vel +sBF +eum +vel +eum +eLO +agn +lnG +wks +jqe +vel +ndh +pCa +txW +mtC +jZL +mCG +scZ +mtC +txW +pCa +mHT +tfP +cHr +mHT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kse +glC +kse +glC +kse +pCa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(178,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hIM +igh +txW +txW +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +gtn +gtn +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +pCa +uMD +uMD +uMD +uMD +uMD +uMD +fzL +uMD +uMD +uMD +uMD +uMD +uMD +pCa +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +pCa +pCa +pCa +pCa +whR +uty +hzt +hzt +uty +xGr +qip +gkg +kan +awX +ukF +hrX +kED +lrh +jVn +jVn +sHb +jVn +jVn +jVn +jVn +ned +gSC +qtn +mvR +hXa +hml +ned +vSH +uiw +uiw +gMG +diV +diV +diV +bhJ +jTb +iTW +dkp +kCv +lfl +sqO +nqh +iTW +ndh +pCa +pCa +mtC +uHC +azD +sNN +mtC +pCa +pCa +mHT +mHT +mHT +mHT +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +rQU +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(179,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +php +igh +xDQ +igh +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +txW +gVw +gVw +gVw +gVw +gVw +eKk +nam +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mND +uty +uty +uty +uty +kbM +ukF +qvg +qOf +ukF +dtb +wbh +nzj +vuB +exz +mmp +uZL +tqE +jjx +exz +avl +gEX +hqO +abD +nUu +lBh +faw +mjb +kit +uiw +vkW +upc +gxB +iAI +diV +ocW +mpP +tdT +diV +eGm +mSD +eGm +diV +arv +diV +txW +pCa +mtC +gFl +kuC +lno +mtC +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(180,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xMU +igh +gtn +igh +xka +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kRd +gCg +igh +gbo +igh +oLr +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +txW +pCa +pCa +txW +txW +txW +dOV +txW +txW +txW +pCa +pCa +txW +txW +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kaB +pCa +pCa +pCa +uDG +gBk +mKY +uty +hRv +vfV +dtb +qip +xKy +xKy +cvQ +fsc +cvQ +exz +exz +hiU +xyo +xWq +eIH +exz +edN +eNS +xjE +vcF +hQk +ljN +nzi +xjB +bjL +uiw +hQg +mzP +kIV +kni +diV +diV +jVH +kIv +diV +opT +ble +qrP +diV +diV +diV +txW +txW +mtC +jtF +jtF +jtF +mtC +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(181,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +gtn +igh +bFw +bFw +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +iiT +txW +dPu +odi +xoe +rqR +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +gVw +gVw +gVw +gVw +gVw +txW +pCa +nam +pCa +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +fBx +pHn +gFv +wPS +eaO +sEF +dtb +rJW +xKy +cvQ +oHf +oHf +oHf +exz +jXf +pEp +mXA +bRH +exz +exz +ekD +ino +xUq +uCC +iQD +nZb +jNu +uED +ekD +uiw +uiw +yal +xln +lpa +fAW +diV +diV +diV +diV +eGm +aNz +eGm +diV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(182,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hIM +igh +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kDi +lrR +txW +iiT +igh +txW +txW +txW +txW +txW +rQU +lGA +pCa +uMD +uMD +uMD +uMD +uMD +tUv +tUv +fzL +tUv +tUv +uMD +uMD +uMD +uMD +uMD +pCa +lGA +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qVg +hic +xik +fvL +dtb +xKy +xKy +fsc +oHf +oHf +kRR +blf +exz +aOs +uAF +psg +ets +vAl +iuP +aaf +oSQ +xUq +bzX +iQJ +hQk +jNu +rBe +eDX +oZV +rLv +mzP +rSE +fKG +gBx +sJm +lrT +uiw +dRZ +txW +uBJ +txW +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(183,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +gtn +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kRd +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +gVw +gVw +gVw +gVw +gVw +txW +pCa +dOV +pCa +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +pCa +txW +txW +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qSr +uty +mKY +xba +ukF +xKy +dtb +hbJ +oHf +nWM +gHw +pxX +hcn +vDr +vnq +wGA +pcN +vAl +iuP +dbO +lmN +dmM +ovk +jAR +nkx +cUk +ceY +fMI +nMJ +rLv +mzP +iWt +bTu +pdM +aQb +oNz +uiw +pCa +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(184,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xMU +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oXh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +txW +txW +pCa +pCa +txW +txW +txW +nam +txW +txW +txW +pCa +pCa +txW +txW +txW +lGA +txW +txW +txW +bFw +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +vCy +uty +uty +aNF +ukF +xKy +dtb +xSM +oHf +ePx +psy +vKf +pIR +vnq +quM +aIc +maZ +vAl +mSn +vSH +dyc +nvz +fzZ +xRQ +tiz +wvg +erp +otd +keD +wMr +hty +tfT +oxB +oSj +ylj +ldY +uiw +pCa +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +lHF +aqt +fBx +wBM +mpS +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(185,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +kRd +abE +rqR +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +txW +gVw +gVw +gVw +gVw +gVw +txW +dOV +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +lGA +txW +txW +nPV +igh +igh +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qSr +mKY +uty +xba +ukF +ukF +dtb +hUz +oHf +lzn +akU +tfU +qnl +gTS +qpe +aIc +efC +vAl +iuP +rph +amS +vgY +kku +nYM +fYH +mPI +ceY +fMI +tCi +rLv +mzP +jIV +kmF +pdM +mzP +ksS +uiw +pCa +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lHF +aqt +aXd +aqt +cyB +ukF +ukF +ukF +oKZ +aqt +aXd +aec +uzU +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(186,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +xDQ +igh +kRd +txW +iiT +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +pCa +uMD +uMD +uMD +uMD +uMD +uMD +fzL +uMD +uMD +uMD +uMD +uMD +uMD +pCa +lGA +pCa +txW +txW +nPV +igh +gtn +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +txW +txW +nRG +mBp +wPS +vfV +dtb +ukF +ukF +fsc +oHf +oHf +vCv +cDT +exz +rWu +tAi +aIc +wyZ +vRG +kQj +jDK +oSQ +xUq +xeQ +hHw +rQk +fVT +uRu +kIo +bii +rLv +mzP +mAE +bNR +mGG +kZM +lrT +uiw +dRZ +txW +wGC +txW +rQU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lHF +oOA +jjf +sLa +cRl +jbJ +sLa +oQT +sLa +cRl +dtb +vwK +dtb +erl +aqt +fBx +aqt +uzU +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(187,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +veJ +igh +igh +igh +igh +agj +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +rQU +lGA +txW +gVw +gVw +gVw +gVw +gVw +txW +fzL +txW +gVw +gVw +gVw +gVw +gVw +txW +lGA +rQU +txW +txW +nPV +igh +gtn +igh +gtn +txW +txW +txW +txW +txW +txW +txW +txW +txW +csV +gtn +igh +bFw +txW +aXd +igQ +uWI +nuy +igQ +dtb +ukF +dtb +cvQ +oHf +oHf +oHf +exz +qpp +fcw +qpe +pob +exz +exz +ekD +sOG +xUq +xfA +fcQ +wVb +fVT +hVP +ekD +uiw +uiw +iBJ +eep +oDV +gPZ +uiw +uiw +uiw +pCa +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +bwF +uty +uty +wkl +pSe +uty +uty +uty +rwl +dDT +njx +bLg +uOP +wgE +dtb +dtb +ldo +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(188,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +gtn +gtn +igh +tib +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +lGA +txW +txW +txW +pCa +txW +txW +txW +fzL +txW +txW +txW +pCa +txW +txW +txW +lGA +pCa +txW +txW +nPV +igh +gtn +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +pkl +igh +gtn +igh +txW +txW +txW +rKr +nzz +dtb +dtb +ukF +dtb +dtb +cvQ +fsc +cvQ +exz +exz +uVy +ocS +dCb +pUj +exz +eKs +eNS +sFw +ktY +rXN +diU +dxu +lHS +uCd +uiw +oCb +bMY +oMx +mrO +uiw +uiw +qvg +pdG +aqt +oFa +aqt +fBx +kaB +pCa +pCa +pCa +pCa +pCa +kaB +pCa +pCa +pCa +pCa +pCa +dRZ +fBx +pIn +uty +dUu +vvn +mGK +wPS +tVs +wPS +ndj +uSl +kLs +gfC +gfC +gfC +kLs +dtb +imX +aqt +aXd +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(189,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +gtn +gtn +igh +bFw +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +uMD +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +bFw +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +sVP +igh +txW +txW +txW +xxB +igQ +nzz +rKr +dtb +dtb +jbJ +bJN +sLa +sLa +cRl +exz +mmp +lVs +fSw +jMx +exz +iZn +jqo +eBy +cFT +eXC +rDj +lEf +lyy +jwy +uiw +fSi +mzP +jgh +ifR +uiw +jbJ +bJN +sLa +wTS +cRl +oLp +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +pIn +uty +dya +smB +iSN +vBu +eLm +sTL +bJN +nDE +kLs +ftj +ggh +cXs +kLs +omF +igQ +xKy +pdG +aqt +fBx +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(190,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +igh +gtn +gtn +igh +xMU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +pCa +aNx +pCa +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +csV +igh +gtn +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +aXd +vIx +vIx +vIx +nuy +dtb +dtb +gds +uty +uty +uty +rwl +exz +exz +exz +kiY +exz +exz +vSH +ned +gSC +kxq +ePM +eVm +aGp +ned +vSH +uiw +uiw +bfq +uiw +uiw +uiw +gds +mKY +uty +uty +rwl +lzL +uUl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +sJF +wPS +ndj +gds +uty +rwl +hwa +gds +uty +aKr +gfC +qNa +pGG +gKC +kLs +gfC +kLs +omF +kIA +ukF +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(191,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +xMU +gtn +gtn +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +txW +pCa +txW +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +bFw +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +oOb +nLs +sIe +aPW +ldo +awX +qOf +sJF +wPS +gFv +wPS +ndj +dtb +vSH +bNh +lNx +nnQ +nwj +vSH +cyy +fWl +mgc +vAQ +rEA +mIt +cyy +vSH +fya +ehF +bRc +bbk +vSH +dtb +sJF +wPS +hiC +wPS +ndj +igQ +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +nuy +yaj +dtb +omF +ukF +sJF +wPS +jIp +jjf +jOz +vXe +sCI +kLs +bry +eIE +hdD +nQR +dOR +kLs +gfC +kLs +dtb +pdG +nuy +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(192,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hIM +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lGA +lGA +lGA +lGA +lGA +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pkl +bFw +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +lHF +xfO +xPD +uty +vQa +xuG +mpS +tOW +aUV +rEm +oDY +vSH +vSH +vSH +vSH +dut +xIE +oVU +xAe +vSH +vSH +vSH +gsN +gek +sTW +vSH +vSH +vSH +aoX +sXi +ghk +kxQ +vSH +vSH +vSH +vSH +hrj +eRx +xik +cRl +pdG +aXd +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yjT +ukF +jbJ +sLa +tUc +omF +xKy +pIn +uty +dya +qfK +kLs +kLs +kLs +how +vpX +hGv +jWO +vrK +beA +kLs +omF +ukF +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(193,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +veJ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pkl +csV +bFw +txW +txW +txW +txW +txW +txW +txW +vYK +gtR +uty +mKY +uty +tbw +ldo +whR +uty +uty +dya +vSH +mCz +mCz +vSH +wEX +fzZ +tiz +jhE +bRc +mon +oHV +gVo +gVo +yiu +xOZ +mon +bRc +xfi +fzZ +tiz +qSF +vSH +mCz +mCz +vSH +whR +uty +mKY +uiG +xKy +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yjT +igQ +pIn +uty +svU +lrs +smB +nQc +uty +jBa +nDE +kLs +wnK +kLs +jPV +imD +ktJ +msh +dkS +sjD +kLs +kLs +ukF +oKZ +uzU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(194,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +bFw +hIM +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pkl +igh +igh +veJ +txW +txW +txW +txW +txW +txW +fBx +eiF +uty +hzt +mKY +cff +sEF +jHP +uty +uty +hpC +mon +mCz +mCz +xLz +wMQ +fdG +tzF +lSD +qzF +uPF +wOg +gAd +gAd +gAd +qoC +dYr +aYb +wYM +dZk +eOK +pmQ +rpj +mCz +mCz +mon +uzV +mKY +uty +xJJ +rKr +ldo +kaB +pCa +pCa +kaB +pCa +pCa +pCa +pCa +kaB +pCa +pCa +yjT +kan +gds +uty +rwl +ukF +gds +uty +uty +uty +aKr +dit +sDY +pdQ +uTQ +ujg +hsK +yaQ +wcm +xDe +cPU +gfC +omF +ukF +sEF +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(195,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +gtn +gtn +igh +txW +txW +txW +txW +txW +txW +yjT +bwF +mKY +uty +uty +dya +ldo +pIn +uty +uty +wRH +vSH +mCz +mCz +vSH +aJD +rGg +jpa +mPs +uJN +mon +rCz +jAh +bee +eVZ +jAY +mon +vMg +rGg +rZw +rGg +lGt +vSH +mCz +mCz +vSH +pIn +uty +uty +dya +lzL +keb +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yjT +dtb +iFP +uty +dya +omF +sJF +oPN +uty +hRv +ndj +kLs +nwu +kLs +tqn +kMi +aKj +vxZ +mZc +qQu +kLs +kLs +kan +jBn +nMg +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(196,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +gtn +gtn +igh +igh +bIU +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +xMU +bFw +igh +hQx +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +igh +txW +txW +txW +txW +txW +txW +thP +bys +nMv +uty +hRv +sIT +jBQ +cBM +paF +wPS +noc +vSH +vSH +vSH +iJc +iJc +aKq +sha +aKq +iJc +iJc +vSH +wPE +mon +vYv +vSH +eDa +eDa +xpY +rYZ +xpY +eDa +eDa +vSH +vSH +vSH +qlQ +wGW +sDa +ndj +sAF +nuy +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +dtb +bOW +hiC +ndj +omF +ukF +bwF +uty +svU +ukF +kLs +kLs +kLs +rrC +yiq +fgC +juv +oSP +lfz +kLs +omF +dtb +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(197,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +vYK +lje +rTx +lGS +ldo +txW +xLg +jbJ +bJN +sLa +lts +uBi +dtb +fhU +wun +tTT +sKE +ecG +hxh +sha +vXv +kdr +pRp +mgk +aZf +rYZ +xwH +uJf +deZ +dig +pDL +jWn +qVy +jbJ +bJN +bJN +cTe +cRl +fNq +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +aXd +uPq +dtb +omF +sPH +jbJ +sLa +cwK +xZG +apQ +sLa +cRl +kLs +lix +aOB +uZo +tOX +dOR +kLs +gfC +kLs +ukF +jBn +aXd +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(198,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +gtn +gtn +gtn +igh +veJ +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nuy +kLH +kLH +kLH +aXd +pCa +dtb +gds +uty +uty +uty +rwl +igQ +iJc +bpf +aZM +xMF +caQ +sss +sTF +ans +fKQ +aiq +ijx +xeC +tJq +ehH +dwL +prj +dmx +dzp +eDa +fNq +gds +uty +uty +mKY +rwl +dtb +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +yjT +sTL +kJQ +vBu +gds +uty +rwl +eHY +gds +uty +rwl +gfC +xsO +xvF +rLF +kLs +gfC +kLs +omF +fuV +ukF +tbl +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(199,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +nFx +igh +gtn +pkl +csV +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +dtb +lje +wPS +wPS +wPS +ofd +kan +iJc +uiJ +ygV +ygV +jBz +vXC +iJc +mTI +fey +dFq +orQ +dBL +eDa +gIz +ggR +cAJ +nYi +eDa +eDa +dtb +sJF +wPS +wPS +hiC +lGS +rxB +ldo +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +bwF +uty +sDN +mGK +hiC +vvn +omF +sJF +wPS +ndj +kLs +vbB +oDc +mrP +kLs +omF +dtb +dtb +sAF +fic +fBx +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(200,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +bFw +igh +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nuy +aqt +oFa +wBM +wBM +aqt +nuy +jkW +jdd +iJc +pUb +nxR +aZM +hTv +eEA +scr +oiB +hRq +bcU +qrV +dht +tHb +fxK +msg +kfV +qYM +eDa +xKy +dtb +osS +qpJ +ecL +kLH +nHW +kLH +sEF +kaB +pCa +pCa +pCa +pCa +pCa +kaB +pCa +pCa +pCa +pCa +pCa +dRZ +sEF +bwF +uty +gvK +vBu +jbJ +bJN +oQT +sLa +cRl +qZb +kLs +gfC +gfC +gfC +kLs +kan +jBn +kLH +aXd +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(201,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +bFw +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +lBr +wRk +oQT +hGS +lBr +uUl +kan +qvg +iJc +kZU +ukY +eTU +kQN +eEA +udo +oiB +jHI +bcU +dGk +dht +dAO +fxK +ikr +haW +jxM +eDa +ecL +kLH +nHW +nuy +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +bwF +uty +uty +dya +gds +uty +uty +uty +rwl +nPV +gTz +igQ +omF +dtb +ukF +ukF +jit +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(202,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +jZz +yaj +sTL +nQc +mKY +jBa +cRl +pdG +uzU +rKr +iJc +pUb +nxR +aZM +hTv +eEA +scr +oiB +kOh +bcU +gnP +oWS +tHb +fxK +msg +kfV +jSc +eDa +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +thP +qQH +wPS +wPS +jXs +sJF +wPS +vwd +wPS +ndj +ukF +cWI +ukF +iLt +kLH +sEF +kLH +nMg +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(203,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +igh +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +nov +pIn +uty +uty +mKY +bmF +dtb +uUl +kan +iJc +jAA +oGt +oGt +uNC +pUY +iJc +djL +hQf +fcT +iOb +xpL +eDa +pdZ +uLN +dTE +dnz +eDa +eDa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +thP +kLH +nuy +kLH +qnv +ukF +ukF +ukF +iWP +fic +nuy +kLH +nMg +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(204,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +sEF +omF +eiF +uty +hzt +uty +cff +eLm +fBx +qvg +iJc +eZi +aZM +bAt +dVu +lBi +dvA +cvK +lYI +nuK +rPD +xaO +myW +oSf +iWL +onN +dmx +rza +eDa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +thP +kLH +sEF +kLH +nMg +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(205,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +jkW +slD +uty +uty +uty +rsZ +bYG +ldo +igQ +fhU +cBA +mFj +fsT +dfd +wtO +sha +lAk +hhC +kEF +lNq +fDN +rYZ +kon +vAX +oqi +uLs +rTn +jWn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(206,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +thP +uPq +sJF +oPN +mKY +nfB +ndj +jBn +nMg +qvg +iJc +iJc +ttx +ndy +iJc +iJc +iJc +tUn +wqj +xiN +xPx +tUn +eDa +eDa +eDa +eDa +jxc +eDa +eDa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(207,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +oOb +cIv +lje +rTx +ndj +wlY +xTg +nCI +kan +igQ +iJc +lKa +kod +tUn +miT +nia +mDc +mgN +mgN +lju +dkJ +gnB +uMa +tUn +wQY +kTG +eDa +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(208,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +nuy +fit +bSB +aJC +aJC +bSB +aXd +txW +txW +txW +iJc +nST +tUn +tUn +xhe +tRB +jEi +plh +fYw +oPH +hAe +vyE +oQo +tUn +tUn +lWu +eDa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(209,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +anv +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +fzT +tUn +tws +dqM +kaD +laN +asv +fWO +egg +kai +mLn +oaf +uPw +tUn +wKf +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(210,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +hXd +qfa +jMX +tGI +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +glz +tUn +vXQ +ksd +hzJ +azF +vCh +vaa +uSF +jkh +xTU +xZP +rwj +tUn +vOB +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(211,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hXd +gtn +hXd +hXd +hXn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +tUn +qlL +dqM +kMe +cLe +asv +cOL +jdr +sNb +hwC +bBz +cOT +tUn +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(212,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +hXd +igh +tWQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +tUn +tUn +pSL +nYL +myt +goU +gJa +mQG +bqJ +eKI +sCX +tUn +tUn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(213,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +hXd +uJc +hXd +igh +aax +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +tUn +xtA +pge +wJu +eEf +bCg +oBq +xpX +hJq +jXB +tUn +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(214,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +igh +qvK +hXd +igh +igh +iBQ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +tUn +tgc +tUn +tgc +tUn +tUn +tUn +tgc +tUn +tgc +tUn +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(215,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +hXd +txW +txW +tMq +hXd +uCc +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +dRZ +pCa +pCa +dRZ +pCa +pCa +dRZ +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(216,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +mkL +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +pCa +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(217,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +pCa +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(218,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +pCa +txW +txW +pCa +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(219,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +txW +pCa +txW +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(220,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +pCa +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(221,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +dRZ +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(222,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(223,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(224,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(225,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(226,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(227,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(228,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +qyh +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(229,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(230,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(231,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(232,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(233,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(234,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(235,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(236,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(237,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(238,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(239,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(240,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(241,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(242,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(243,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(244,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(245,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(246,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(247,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(248,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(249,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(250,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(251,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(252,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(253,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(254,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} +(255,1,2) = {" +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +txW +"} diff --git a/_maps/nebulastation.json b/_maps/nebulastation.json new file mode 100644 index 00000000000..dade4f7187b --- /dev/null +++ b/_maps/nebulastation.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "map_name": "NebulaStation", + "map_path": "map_files/NebulaStation", + "map_file": "NebulaStation.dmm", + "shuttles": { + "cargo": "cargo_nebula", + "ferry": "ferry_nebula", + "whiteship": "whiteship_tram", + "emergency": "emergency_nebula" + }, + "traits": [ + { + "Up": true, + "Linkage": "Cross" + }, + { + "Down": true, + "Baseturf": "/turf/open/openspace", + "Linkage": "Cross" + } + ] +} diff --git a/_maps/nova/automapper/automapper_config.toml b/_maps/nova/automapper/automapper_config.toml index 64365411d10..557ad4a4cbd 100644 --- a/_maps/nova/automapper/automapper_config.toml +++ b/_maps/nova/automapper/automapper_config.toml @@ -457,3 +457,59 @@ directory = "_maps/RandomRuins/IceRuins/nova/" required_map = "snowglobe.dmm" coordinates = [202, 16, 2] trait_name = "Station" + +# Nebulastation Barber +[templates.nebulastation_barber] +map_files = ["nebulastation_barber.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [132, 113, 2] +trait_name = "Station" + +# Nebulastation Cryo +[templates.nebulastation_cryo] +map_files = ["nebulastation_cryo.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [112, 122, 1] +trait_name = "Station" + +# Nebulastation Armory +[templates.nebulastation_armory] +map_files = ["nebulastation_armory.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [161, 116, 1] +trait_name = "Station" + +# Nebulastation Arrivals +[templates.nebulastation_arrivals] +map_files = ["nebulastation_arrivals.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [122, 122, 2] +trait_name = "Station" + +# Nebulastation NT Rep Office +[templates.nebulastation_ntrep_office] +map_files = ["nebulastation_ntrep_office.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [110, 116, 2] +trait_name = "Station" + +# Nebulastation Supermatter (The Button) +[templates.nebulastation_supermatter] +map_files = ["nebulastation_supermatter.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [116, 95, 1] +trait_name = "Station" + +# Nebulastation Anti-Hotwire +[templates.nebulastation_no_hotwire] +map_files = ["nebulastation_no_hotwire.dmm"] +directory = "_maps/nova/automapper/templates/nebulastation/" +required_map = "NebulaStation.dmm" +coordinates = [119, 114, 1] +trait_name = "Station" \ No newline at end of file diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_armory.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_armory.dmm new file mode 100644 index 00000000000..ec4c8a34694 --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_armory.dmm @@ -0,0 +1,175 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/mod_lasers_big, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"p" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/shotguns, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"s" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/bot/right, +/obj/machinery/airalarm/directional/north, +/obj/item/melee/breaching_hammer, +/obj/item/melee/breaching_hammer, +/obj/item/melee/breaching_hammer, +/obj/item/melee/breaching_hammer, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"L" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/smg, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) +"R" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack/gunrack, +/obj/effect/spawner/armory_spawn/mod_lasers_small, +/turf/open/floor/iron/dark/textured_large, +/area/station/ai_monitored/security/armory) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +L +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +p +l +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +R +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +s +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_arrivals.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_arrivals.dmm new file mode 100644 index 00000000000..85917fd57d9 --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_arrivals.dmm @@ -0,0 +1,252 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/teal, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"d" = ( +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"f" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"h" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"i" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 13; + shuttle_id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = null; + width = 5 + }, +/turf/open/openspace, +/area/space) +"k" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_3, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/grass/jungle/b, +/obj/structure/marker_beacon/lime, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"m" = ( +/turf/closed/wall, +/area/station/hallway/secondary/entry) +"p" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/hangover/closet, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"t" = ( +/obj/machinery/computer/shuttle/arrivals/recall, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) +"B" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"J" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/grass, +/area/station/hallway/secondary/entry) +"N" = ( +/obj/structure/lattice, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"P" = ( +/turf/open/openspace, +/area/space) +"S" = ( +/turf/open/floor/glass/reinforced/airless, +/area/space/nearstation) +"Z" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/hallway/secondary/entry) + +(1,1,1) = {" +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +P +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +P +N +f +Z +"} +(8,1,1) = {" +a +a +a +P +c +B +t +"} +(9,1,1) = {" +a +a +a +P +N +m +d +"} +(10,1,1) = {" +a +a +a +P +c +J +h +"} +(11,1,1) = {" +a +a +a +P +N +k +p +"} +(12,1,1) = {" +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +i +P +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +"} +(17,1,1) = {" +S +a +a +a +a +a +a +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_barber.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_barber.dmm new file mode 100644 index 00000000000..7b557695194 --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_barber.dmm @@ -0,0 +1,490 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/curtain/cloth/fancy, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"c" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"d" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/razor{ + pixel_x = -3 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"e" = ( +/obj/machinery/door/airlock/multi_tile/public/glass{ + name = "Barber Shop" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/barber) +"f" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/iron/dark/herringbone, +/area/station/service/barber) +"i" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"l" = ( +/obj/structure/table/reinforced, +/obj/structure/desk_bell, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"m" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"n" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"o" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"p" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/vending/barbervend, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"q" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"r" = ( +/obj/effect/landmark/start/barber, +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"s" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"t" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"u" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/station/service/barber) +"v" = ( +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"w" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/newspaper, +/obj/machinery/button/door/directional/east{ + id = "arrivalbarber"; + name = "Barber Shop Shutters Control" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"x" = ( +/obj/structure/hedge, +/obj/structure/sign/poster/official/love_ian/directional/north, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"y" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"A" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/secure_closet/barber, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"B" = ( +/turf/closed/wall, +/area/station/service/barber) +"C" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"F" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"G" = ( +/obj/structure/chair/comfy, +/obj/structure/mirror/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"H" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"I" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"J" = ( +/obj/structure/chair/stool/directional/south{ + pixel_y = 21 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 34 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/light/small/dim/directional/south, +/turf/open/floor/carpet/red, +/area/station/service/barber) +"L" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/grass, +/area/station/service/barber) +"M" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"N" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/razor{ + pixel_x = -3 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"O" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"R" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/station/service/barber) +"S" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"T" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"U" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron/dark/small, +/area/station/service/barber) +"V" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"W" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/station/service/barber) +"X" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/flora/grass/jungle/a/style_random, +/obj/structure/flora/bush/sparsegrass/style_random, +/obj/structure/flora/bush/generic/style_random, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/station/service/barber) +"Y" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + name = "Barber Shop Shutters"; + id = "arrivalbarber" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/service/barber) + +(1,1,1) = {" +a +B +X +u +U +L +B +"} +(2,1,1) = {" +a +o +M +i +O +d +B +"} +(3,1,1) = {" +a +l +m +r +t +G +B +"} +(4,1,1) = {" +a +Y +T +C +n +N +B +"} +(5,1,1) = {" +a +V +I +r +t +G +B +"} +(6,1,1) = {" +B +B +x +v +A +p +B +"} +(7,1,1) = {" +e +s +q +R +H +B +B +"} +(8,1,1) = {" +f +F +y +v +W +B +a +"} +(9,1,1) = {" +B +B +w +c +S +B +a +"} +(10,1,1) = {" +a +B +B +b +B +B +a +"} +(11,1,1) = {" +a +a +B +J +B +a +a +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_cryo.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_cryo.dmm new file mode 100644 index 00000000000..72f96b1ac3d --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_cryo.dmm @@ -0,0 +1,229 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/cryopod, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"c" = ( +/obj/machinery/computer/cryopod/directional/west, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/station/common/cryopods) +"d" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"g" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/jungle/c/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/common/cryopods) +"i" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/corner, +/area/station/common/cryopods) +"m" = ( +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"n" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/common/cryopods) +"o" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/common/cryopods) +"q" = ( +/obj/machinery/cryopod, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"s" = ( +/obj/effect/turf_decal/trimline/white/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/station/common/cryopods) +"t" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/common/cryopods) +"v" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"w" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"B" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/common/cryopods) +"C" = ( +/turf/closed/wall, +/area/station/common/cryopods) +"D" = ( +/obj/machinery/cryopod, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"L" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_large, +/area/station/common/cryopods) +"N" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/station/common/cryopods) +"P" = ( +/obj/machinery/time_clock/directional/south, +/obj/effect/turf_decal/trimline/white/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/station/common/cryopods) +"S" = ( +/obj/structure/sign/poster/timeclock_psa/directional/south, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"U" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/iron/dark, +/area/station/common/cryopods) +"V" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/flora/bush/leavy/style_3, +/obj/structure/flora/bush/style_random, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/bush/flowers_pp/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/south, +/turf/open/floor/grass, +/area/station/common/cryopods) +"Y" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Cryopods" + }, +/obj/effect/landmark/navigate_destination{ + location = "Cryopods" + }, +/turf/open/floor/iron/white, +/area/station/common/cryopods) + +(1,1,1) = {" +C +C +C +C +C +C +"} +(2,1,1) = {" +C +q +i +c +L +C +"} +(3,1,1) = {" +C +D +s +o +w +C +"} +(4,1,1) = {" +C +a +s +t +d +C +"} +(5,1,1) = {" +n +N +B +N +P +C +"} +(6,1,1) = {" +C +U +m +v +S +C +"} +(7,1,1) = {" +C +C +V +Y +g +C +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_no_hotwire.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_no_hotwire.dmm new file mode 100644 index 00000000000..1516030601a --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_no_hotwire.dmm @@ -0,0 +1,17 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Grav Gen Maintenance" + }, +/turf/open/floor/plating, +/area/station/engineering/gravity_generator) + +(1,1,1) = {" +a +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_ntrep_office.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_ntrep_office.dmm new file mode 100644 index 00000000000..d5026f3e449 --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_ntrep_office.dmm @@ -0,0 +1,535 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"b" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"c" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/south, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/structure/table, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"d" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"f" = ( +/obj/structure/cable, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"g" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"h" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/bureaucracy/folder{ + spawn_random_offset = 1 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"i" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"j" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"k" = ( +/obj/machinery/modular_computer/preset/command{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"l" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"m" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"n" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/item/stamp{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/centcom{ + pixel_x = 4 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"o" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"q" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"r" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"s" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"t" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"u" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/turf/open/floor/plating, +/area/station/command/heads_quarters/nt_rep) +"v" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"w" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/corporate{ + name = "NT Consultant's Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/cent_com/rep_door, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"x" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/smartfridge/food, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"y" = ( +/turf/template_noop, +/area/template_noop) +"z" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"A" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"B" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron, +/area/station/hallway/primary/central) +"C" = ( +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/nanotrasen_consultant, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) +"D" = ( +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/nt_rep) +"E" = ( +/obj/structure/table/wood, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"F" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "nt_rep_priv"; + name = "Privacy Shutters Control"; + pixel_y = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"G" = ( +/obj/structure/rack, +/obj/effect/spawner/random/bureaucracy/briefcase{ + spawn_loot_count = 2; + spawn_loot_split = 1 + }, +/obj/effect/spawner/random/bureaucracy/briefcase{ + spawn_loot_count = 2; + spawn_loot_split = 1 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"I" = ( +/obj/machinery/firealarm/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"J" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"K" = ( +/obj/machinery/door/poddoor/preopen{ + id = "nt_rep_priv"; + name = "Privacy Shutter" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/command/heads_quarters/nt_rep) +"L" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"M" = ( +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"O" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"P" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"Q" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/closet/secure_closet/nanotrasen_consultant, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"S" = ( +/turf/template_noop, +/area/station/hallway/primary/port) +"T" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/south, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"U" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/spawner/random/bureaucracy/pen, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"V" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"W" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"X" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"Y" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/station/command/heads_quarters/nt_rep) +"Z" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/carpet/executive, +/area/station/command/heads_quarters/nt_rep) + +(1,1,1) = {" +y +D +D +D +D +u +D +D +D +y +y +"} +(2,1,1) = {" +S +K +P +X +o +t +F +Q +D +D +y +"} +(3,1,1) = {" +S +K +h +j +Y +n +C +f +x +D +y +"} +(4,1,1) = {" +S +K +U +j +q +Z +k +a +c +D +y +"} +(5,1,1) = {" +S +K +I +O +g +a +v +a +T +D +y +"} +(6,1,1) = {" +S +D +D +w +D +L +m +J +d +D +D +"} +(7,1,1) = {" +y +r +l +B +D +K +s +M +V +z +D +"} +(8,1,1) = {" +y +y +y +y +y +K +i +A +b +D +D +"} +(9,1,1) = {" +y +y +y +y +y +K +K +W +E +D +y +"} +(10,1,1) = {" +y +y +y +y +y +y +K +G +D +D +y +"} +(11,1,1) = {" +y +y +y +y +y +y +D +D +D +y +y +"} diff --git a/_maps/nova/automapper/templates/nebulastation/nebulastation_supermatter.dmm b/_maps/nova/automapper/templates/nebulastation/nebulastation_supermatter.dmm new file mode 100644 index 00000000000..f58ad1f4421 --- /dev/null +++ b/_maps/nova/automapper/templates/nebulastation/nebulastation_supermatter.dmm @@ -0,0 +1,99 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"d" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/machinery/button/delam_scram, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"x" = ( +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) +"F" = ( +/obj/machinery/atmospherics/components/unary/delam_scram/directional/east, +/turf/template_noop, +/area/station/engineering/supermatter) +"L" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/structure/sign/delam_procedure{ + pixel_x = 32; + pixel_y = 35 + }, +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) + +(1,1,1) = {" +d +d +d +d +d +d +F +"} +(2,1,1) = {" +d +d +d +d +d +d +d +"} +(3,1,1) = {" +d +d +d +d +d +d +d +"} +(4,1,1) = {" +d +d +d +d +d +d +d +"} +(5,1,1) = {" +d +d +d +d +d +d +d +"} +(6,1,1) = {" +d +d +d +d +d +d +d +"} +(7,1,1) = {" +k +L +d +d +d +d +d +"} +(8,1,1) = {" +x +d +d +d +d +d +d +"} diff --git a/_maps/shuttles/arrival_nebula.dmm b/_maps/shuttles/arrival_nebula.dmm new file mode 100644 index 00000000000..a7746b6ea8f --- /dev/null +++ b/_maps/shuttles/arrival_nebula.dmm @@ -0,0 +1,452 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"b" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/official/random/directional/north, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"c" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"d" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/glass/reinforced, +/area/shuttle/arrival) +"e" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"f" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"g" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"h" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"k" = ( +/obj/machinery/door/airlock/shuttle/glass, +/turf/open/floor/plating, +/area/shuttle/arrival) +"l" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"m" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"n" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"p" = ( +/obj/machinery/requests_console/directional/south{ + department = "Arrival shuttle"; + name = "Arrival Shuttle Requests Console" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"q" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/soda_cans/dr_gibb{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_containers/cup/soda_cans/starkist{ + pixel_y = 9; + pixel_x = -5 + }, +/obj/item/reagent_containers/cup/soda_cans/pwr_game{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"r" = ( +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/closet/wardrobe/grey, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"t" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + plane = -7 + }, +/obj/item/toy/plush/moth{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/digital_clock/directional/south, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"u" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"v" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"x" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"y" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"z" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"A" = ( +/obj/machinery/power/shuttle_engine/propulsion{ + dir = 4 + }, +/obj/docking_port/mobile/arrivals, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"B" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"D" = ( +/obj/machinery/power/shuttle_engine/propulsion{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"E" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"G" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/west, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"H" = ( +/obj/structure/window/reinforced/spawner/directional/east, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"I" = ( +/obj/structure/window/reinforced/spawner/directional/west, +/obj/item/kirbyplants/organic/plant22, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"J" = ( +/turf/open/floor/carpet/black, +/area/shuttle/arrival) +"L" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"O" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/shuttle/arrival) +"Q" = ( +/turf/template_noop, +/area/template_noop) +"R" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/warm/directional/north, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/storage/medkit/regular, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"S" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 10; + pixel_x = 9 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 2; + pixel_x = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"T" = ( +/obj/machinery/door/airlock/shuttle/glass, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"U" = ( +/turf/closed/wall/mineral/titanium/overspace, +/area/shuttle/arrival) +"V" = ( +/obj/machinery/light/warm/directional/south, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/closet/wardrobe/mixed, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"W" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"Y" = ( +/obj/structure/table/wood, +/obj/machinery/coffeemaker/impressa, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) +"Z" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood/parquet, +/area/shuttle/arrival) + +(1,1,1) = {" +Q +Q +a +a +a +Q +Q +"} +(2,1,1) = {" +Q +a +a +E +a +a +Q +"} +(3,1,1) = {" +Q +a +y +J +g +a +Q +"} +(4,1,1) = {" +U +v +v +T +v +v +U +"} +(5,1,1) = {" +v +q +z +e +x +t +v +"} +(6,1,1) = {" +k +n +J +J +J +W +k +"} +(7,1,1) = {" +v +b +L +J +u +V +v +"} +(8,1,1) = {" +U +v +m +J +H +v +U +"} +(9,1,1) = {" +Q +a +d +J +O +a +Q +"} +(10,1,1) = {" +Q +a +d +J +O +a +Q +"} +(11,1,1) = {" +Q +a +d +J +O +a +Q +"} +(12,1,1) = {" +U +v +I +J +B +v +U +"} +(13,1,1) = {" +v +R +h +J +l +r +v +"} +(14,1,1) = {" +k +n +J +J +J +W +k +"} +(15,1,1) = {" +v +f +c +c +c +p +v +"} +(16,1,1) = {" +U +v +Y +Z +S +v +U +"} +(17,1,1) = {" +Q +v +G +G +G +v +Q +"} +(18,1,1) = {" +Q +U +D +A +D +U +Q +"} diff --git a/_maps/shuttles/cargo_nebula.dmm b/_maps/shuttles/cargo_nebula.dmm new file mode 100644 index 00000000000..5320c961694 --- /dev/null +++ b/_maps/shuttles/cargo_nebula.dmm @@ -0,0 +1,333 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/turf/open/floor/plating, +/area/shuttle/supply) +"b" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "QMLoad" + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"c" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"d" = ( +/obj/machinery/light/directional/east, +/obj/machinery/button/door/directional/east{ + id = "QMLoaddoor"; + name = "Loading Doors"; + pixel_y = -8; + req_access = list("cargo") + }, +/obj/machinery/button/door/directional/east{ + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_y = 8; + req_access = list("cargo") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"e" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"f" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"h" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"i" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 1 + }, +/turf/open/floor/iron/dark/side, +/area/shuttle/supply) +"j" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/dark/warning, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/supply) +"n" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"p" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"s" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"v" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"y" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"A" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/shuttle/supply) +"C" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"D" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock" + }, +/obj/docking_port/mobile/supply, +/turf/open/floor/plating, +/area/shuttle/supply) +"E" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "QMLoad2" + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"G" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"I" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"J" = ( +/turf/template_noop, +/area/template_noop) +"L" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "QMLoad2" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"M" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"O" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "QMLoad" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"P" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "QMLoad2" + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"Q" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"T" = ( +/turf/open/floor/glass/reinforced, +/area/shuttle/supply) +"U" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"V" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/supply) +"W" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/supply) +"X" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"Y" = ( +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "QMLoad" + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/supply) +"Z" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/supply) + +(1,1,1) = {" +J +Q +W +Q +Q +Q +Q +Q +W +Q +a +J +"} +(2,1,1) = {" +Q +Q +n +v +v +X +G +G +M +Q +A +a +"} +(3,1,1) = {" +Q +n +P +s +T +e +T +s +Y +M +Q +Z +"} +(4,1,1) = {" +Q +h +i +c +T +c +T +c +j +y +A +a +"} +(5,1,1) = {" +Q +I +E +s +T +d +T +s +b +O +Q +Z +"} +(6,1,1) = {" +Q +Q +I +L +V +X +V +C +O +Q +A +a +"} +(7,1,1) = {" +J +Q +W +U +f +Q +D +p +W +Q +a +J +"} diff --git a/_maps/shuttles/emergency_nebula.dmm b/_maps/shuttles/emergency_nebula.dmm new file mode 100644 index 00000000000..7b729f72167 --- /dev/null +++ b/_maps/shuttles/emergency_nebula.dmm @@ -0,0 +1,3201 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/shuttle/escape) +"aE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"bb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"bB" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/machinery/power/shuttle_engine/heater, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"bF" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/item/banner/medical/mundane, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) +"bV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"cb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"cj" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"cs" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/light/end{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/iron/white/small, +/area/shuttle/escape) +"ct" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/shuttle/escape) +"cQ" = ( +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/effect/turf_decal/siding/wideplating_new/dark/end, +/turf/open/floor/grass, +/area/shuttle/escape) +"cS" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/sparsegrass/style_2, +/obj/structure/flora/bush/grassy/style_2, +/obj/structure/flora/bush/flowers_yw, +/obj/structure/flora/bush/sunny/style_random, +/obj/structure/flora/grass/jungle, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/shuttle/escape) +"cZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shieldgen, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"dt" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) +"dy" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"dL" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"ej" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"eU" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"ff" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/large, +/turf/open/floor/grass, +/area/shuttle/escape) +"fk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Emergency Shuttle Door" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"fm" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/shuttle/escape) +"fn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/shuttle/escape) +"fs" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"fD" = ( +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/structure/flora/bush/ferny/style_random, +/obj/structure/window/reinforced/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"fN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"gQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/shuttle/escape) +"ie" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"is" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/red, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"it" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"iy" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 8 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/shuttle/escape) +"iF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"iZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/shuttle/escape) +"jb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"je" = ( +/obj/machinery/computer/records/medical{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"jp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"jw" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/east, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"jx" = ( +/obj/machinery/computer/records/security{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/shuttle/escape) +"jy" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/light/end, +/turf/open/floor/iron/white/small, +/area/shuttle/escape) +"jG" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"jJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) +"jO" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"jY" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"kj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/records/medical/laptop, +/turf/open/floor/carpet/blue, +/area/shuttle/escape) +"kn" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"kF" = ( +/obj/structure/table/glass, +/obj/item/paper/pamphlet/centcom/visitor_info{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/cup/glass/coffee/no_lid{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/structure/window/spawner/directional/west, +/turf/open/floor/glass/reinforced, +/area/shuttle/escape) +"kT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/shuttle/escape) +"kZ" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"ld" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"li" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"ly" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"lR" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"mk" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/shuttle/escape) +"mu" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 1 + }, +/obj/structure/flora/bush/flowers_yw/style_random, +/turf/open/floor/grass, +/area/shuttle/escape) +"mw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"mW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/shuttle/escape) +"nj" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"nm" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/medkit/regular, +/obj/item/storage/medkit/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/toxin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/healthanalyzer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lazarus_injector, +/obj/effect/turf_decal/bot, +/mob/living/basic/bot/medbot{ + name = "\improper emergency medibot"; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"nT" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"oj" = ( +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/effect/turf_decal/siding, +/obj/structure/flora/bush/large/style_2, +/turf/open/floor/grass, +/area/shuttle/escape) +"om" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"oo" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Cockpit" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"os" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/shuttle/escape) +"ou" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/escape) +"oM" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Emergency Recovery Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"oS" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/item/banner/security/mundane, +/obj/machinery/light/directional/north, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) +"oT" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_edge, +/area/shuttle/escape) +"pb" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/escape) +"pe" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/south, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"pg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"pi" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/light/end{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/shuttle/escape) +"pz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"pK" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/shuttle/escape) +"pL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"pO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/camera/autoname, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"pU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"pX" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"qJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"ri" = ( +/obj/effect/turf_decal/siding, +/obj/effect/turf_decal/siding{ + dir = 1 + }, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/large/style_3, +/turf/open/floor/grass, +/area/shuttle/escape) +"rm" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wallmed/directional/east{ + use_power = 0 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"rF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/iron/dark/side, +/area/shuttle/escape) +"rM" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Cockpit" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "evac_shutters"; + name = "Emergency Shutters" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"rU" = ( +/turf/template_noop, +/area/template_noop) +"rW" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"so" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/shuttle/escape) +"sz" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Emergency Recovery Airlock" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"sI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"sN" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet/red, +/area/shuttle/escape) +"sO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"sS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"sU" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/docking_port/mobile/emergency{ + dir = 8; + name = "Nebula emergency shuttle"; + port_direction = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"th" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"tl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"tC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"tU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"uj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"uC" = ( +/turf/open/floor/glass/reinforced, +/area/shuttle/escape) +"uW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/shuttle/escape) +"vc" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"vk" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"vD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/escape) +"vE" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"wq" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"wP" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"wX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/fireaxecabinet/directional/west, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"wY" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"xk" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/escape) +"xo" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"xI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"xK" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"xQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/carpet/purple, +/area/shuttle/escape) +"xU" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname, +/obj/machinery/button/door/directional/south{ + id = "evac_shutters"; + name = "Emergency Shutters Control" + }, +/turf/open/floor/carpet/red, +/area/shuttle/escape) +"xV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"yw" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 8 + }, +/area/shuttle/escape) +"yz" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/structure/flora/rock/pile/jungle/style_random, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/grass, +/area/shuttle/escape) +"yS" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/smooth_corner{ + dir = 4 + }, +/area/shuttle/escape) +"ze" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/light/corner, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/light/corner{ + dir = 4 + }, +/turf/open/floor/iron/white/small, +/area/shuttle/escape) +"zR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"Ak" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Cockpit" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "evac_shutters"; + name = "Emergency Shutters" + }, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"Am" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) +"Aq" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"AA" = ( +/obj/effect/turf_decal/trimline/neutral/warning, +/turf/open/floor/iron/dark/side, +/area/shuttle/escape) +"AN" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"AY" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Ba" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/escape) +"Bg" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"Bl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark/corner, +/area/shuttle/escape) +"Bm" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/stasis, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"Bu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/fire{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/storage/medkit/toxin{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"BB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"BC" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/north, +/obj/item/radio/intercom/directional/east, +/obj/machinery/modular_computer/preset/research{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/shuttle/escape) +"BD" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 8 + }, +/obj/structure/marker_beacon/lime, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 4 + }, +/obj/structure/flora/bush/large, +/turf/open/floor/grass, +/area/shuttle/escape) +"BH" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"BQ" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"Cf" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/shuttle/escape) +"Ck" = ( +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/effect/turf_decal/siding/wideplating_new/dark, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 1 + }, +/obj/structure/hedge, +/turf/open/floor/grass, +/area/shuttle/escape) +"CH" = ( +/obj/machinery/door/airlock/titanium{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"CJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/regular, +/turf/open/floor/glass/reinforced, +/area/shuttle/escape) +"CO" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/shuttle/escape) +"CW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"CZ" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) +"Df" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"DP" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/blue, +/area/shuttle/escape) +"Ed" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"Es" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/shuttle/escape) +"Eu" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/bot_red, +/obj/machinery/camera/autoname, +/turf/open/floor/iron/white/textured, +/area/shuttle/escape) +"EB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"EN" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/shuttle/escape) +"Fd" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Fj" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "evac_shutters"; + name = "Emergency Shutters" + }, +/turf/open/floor/plating, +/area/shuttle/escape) +"Fl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"Fo" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"Fp" = ( +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = -3 + }, +/obj/item/reagent_containers/cup/bottle/epinephrine{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/cup/bottle/multiver{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"Fu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/shuttle/escape) +"FC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"FM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/shuttle/escape) +"FR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/shuttle/escape) +"Ge" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Gh" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"GC" = ( +/obj/effect/turf_decal/trimline/neutral/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/shuttle/escape) +"GE" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"GM" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"GW" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark/side, +/area/shuttle/escape) +"Hb" = ( +/turf/closed/wall/mineral/titanium/overspace, +/area/shuttle/escape) +"Ho" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/stasis, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"HL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Id" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"If" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner{ + dir = 4 + }, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/shuttle/escape) +"Ig" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"IP" = ( +/obj/machinery/newscaster, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"IZ" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b/style_random, +/turf/open/floor/grass, +/area/shuttle/escape) +"Ji" = ( +/obj/structure/fluff/shower_drain, +/obj/machinery/shower/directional/south{ + name = "emergency shower" + }, +/obj/structure/curtain, +/turf/open/floor/iron/white/textured, +/area/shuttle/escape) +"Jq" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/hand_labeler_refill, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"Jt" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 8 + }, +/obj/machinery/vending/boozeomat, +/turf/open/floor/grass, +/area/shuttle/escape) +"Jy" = ( +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/shuttle/escape) +"JW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"Ka" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"Kv" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"KK" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Escape Shuttle Infirmary" + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/white, +/area/shuttle/escape) +"Lv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"LH" = ( +/obj/structure/table/glass, +/obj/item/newspaper, +/obj/structure/window/spawner/directional/east, +/turf/open/floor/glass/reinforced, +/area/shuttle/escape) +"LQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/shuttle/escape) +"Mg" = ( +/obj/structure/bed/medical/emergency, +/obj/machinery/iv_drip, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"Mn" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"Ms" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/shuttle/escape) +"MH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"MM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"MP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/glass/reinforced, +/area/shuttle/escape) +"MS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"Nr" = ( +/obj/machinery/computer/communications, +/turf/open/floor/carpet/royalblue, +/area/shuttle/escape) +"Nx" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/shuttle/escape) +"NI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"NL" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/iron/white/smooth_corner{ + dir = 1 + }, +/area/shuttle/escape) +"NM" = ( +/obj/structure/table/glass, +/obj/effect/spawner/random/entertainment/cigarette, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"OB" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"OI" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"OJ" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"Pi" = ( +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"Pk" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"PA" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"PF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"PX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/iron/dark/side{ + dir = 10 + }, +/area/shuttle/escape) +"QD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"QI" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"QN" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"Ra" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"Rg" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Rp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark/side, +/area/shuttle/escape) +"RC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"RV" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/shuttle/escape) +"Sp" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/cup/soda_cans{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"Sq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"Ss" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/corner, +/obj/structure/marker_beacon/lime, +/obj/effect/turf_decal/siding/wideplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 8 + }, +/obj/structure/flora/bush/large, +/turf/open/floor/grass, +/area/shuttle/escape) +"SC" = ( +/obj/item/defibrillator/loaded, +/obj/structure/rack, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"SH" = ( +/obj/structure/hedge, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"Tc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"Te" = ( +/obj/structure/table/reinforced, +/obj/item/storage/medkit/o2{ + pixel_y = 0; + pixel_x = 0 + }, +/obj/item/storage/medkit/regular{ + pixel_x = 0; + pixel_y = 3 + }, +/turf/open/floor/iron/white/herringbone, +/area/shuttle/escape) +"Tt" = ( +/obj/structure/flora/bush/flowers_yw/style_random, +/obj/effect/turf_decal/siding/wideplating_new/dark/end, +/turf/open/floor/grass, +/area/shuttle/escape) +"TG" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/shuttle/escape) +"TN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/obj/item/kirbyplants/organic/plant22, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/shuttle/escape) +"UD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 4 + }, +/area/shuttle/escape) +"UK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"UQ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/dark/line, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"UU" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/escape) +"Vn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"VY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"VZ" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/wideplating_new/light/end{ + dir = 1 + }, +/turf/open/floor/iron/white/small, +/area/shuttle/escape) +"Ws" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/shuttle/escape) +"WK" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/shuttle/escape) +"WN" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/machinery/computer/records/security{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"WT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"WW" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark/end{ + dir = 4 + }, +/obj/structure/table/reinforced/plastitaniumglass, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/grass, +/area/shuttle/escape) +"Xi" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"Xj" = ( +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/marker_beacon/lime, +/obj/structure/flora/bush/large, +/turf/open/floor/grass, +/area/shuttle/escape) +"Xl" = ( +/obj/structure/hedge, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"Xo" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/open/floor/carpet/royalblue, +/area/shuttle/escape) +"Xt" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"XB" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/shuttle/escape) +"XI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/corner{ + dir = 8 + }, +/area/shuttle/escape) +"XK" = ( +/obj/machinery/cell_charger, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 1 + }, +/obj/item/stock_parts/power_store/cell/high, +/obj/structure/table/reinforced, +/turf/open/floor/iron/dark/herringbone, +/area/shuttle/escape) +"XV" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/east, +/obj/item/surgery_tray/full, +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/kitchen_coldroom/freezerfloor, +/area/shuttle/escape) +"Yn" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/dark_blue/filled/corner, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/iron/dark/side{ + dir = 9 + }, +/area/shuttle/escape) +"Yy" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/dark/textured_large, +/area/shuttle/escape) +"YA" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"YB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/iron/dark, +/area/shuttle/escape) +"YH" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"YV" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"Zc" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/iron/dark/side{ + dir = 6 + }, +/area/shuttle/escape) +"Zh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/large, +/area/shuttle/escape) +"Zp" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/escape) +"Zw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"ZG" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/iron/dark/side{ + dir = 5 + }, +/area/shuttle/escape) +"ZI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/small, +/area/shuttle/escape) +"ZR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/corner{ + dir = 4 + }, +/area/shuttle/escape) + +(1,1,1) = {" +rU +rU +Hb +oM +oM +kZ +kZ +kZ +kZ +kZ +ej +kZ +kZ +UU +UU +UU +ej +kZ +kZ +kZ +UU +kZ +kZ +kZ +kZ +bB +Ig +rU +"} +(2,1,1) = {" +rU +Hb +kZ +om +bb +Ra +kZ +GM +rF +wP +fD +Kv +qJ +wP +fD +Kv +Am +Jy +kZ +Bu +je +Fp +kZ +Eu +kZ +kZ +Ba +Ba +"} +(3,1,1) = {" +rU +kZ +li +fN +Sq +pe +Fj +OI +GW +wP +IP +Kv +iF +wP +IP +Kv +CZ +ag +UU +Te +cs +Mg +UU +yS +Nx +kZ +bB +Ig +"} +(4,1,1) = {" +rU +kZ +kn +xV +Tc +Ra +kZ +GM +GW +wP +Xj +Kv +iF +wP +Xj +Kv +AA +ly +KK +VZ +ze +jy +KK +oT +XB +UU +bB +Ig +"} +(5,1,1) = {" +rU +kZ +kZ +sz +kZ +kZ +kZ +kZ +GW +wP +wY +Kv +iF +wP +wY +Kv +AA +GC +UU +Pi +pi +Pi +UU +NL +XV +kZ +bB +Ig +"} +(6,1,1) = {" +Hb +kZ +DP +MS +wX +oo +BQ +Ak +XI +PX +ie +Ws +os +YA +fD +Xi +bF +Jy +kZ +Bm +SC +Ho +kZ +Ji +kZ +kZ +Ba +Ba +"} +(7,1,1) = {" +UU +kj +Ms +vE +xU +kZ +kZ +kZ +Bl +uW +uC +ZG +ZR +Fd +Sp +pX +CZ +fm +kZ +kZ +UU +kZ +kZ +kZ +kZ +bB +Ig +rU +"} +(8,1,1) = {" +UU +cS +Bg +xo +EN +jx +kZ +SH +Zc +mu +Ss +cQ +gQ +UD +TN +UD +CO +iZ +jO +Yy +nm +OJ +nT +ff +kZ +Ba +Ba +rU +"} +(9,1,1) = {" +UU +Xo +Yn +xk +If +MP +Fj +nj +Rg +AY +Ck +tU +Ge +Xt +sS +th +tC +MM +JW +QD +FC +QD +ZI +ct +UU +bB +Ig +rU +"} +(10,1,1) = {" +UU +Nr +iy +pK +mW +CJ +Fj +cj +it +vc +yz +MH +RC +OB +Fl +pL +Ka +UQ +Zw +tl +sO +tl +pU +oj +UU +bB +Ig +rU +"} +(11,1,1) = {" +UU +cS +XK +pg +WK +RV +kZ +SH +Cf +IZ +BD +Tt +Es +ou +pb +vD +vD +yw +QN +Jq +cZ +lR +Aq +ri +kZ +Ba +Ba +rU +"} +(12,1,1) = {" +UU +xQ +so +vE +TG +kZ +kZ +kZ +jJ +fn +uC +FM +kT +HL +NM +rm +Am +Jy +kZ +kZ +UU +kZ +kZ +kZ +kZ +bB +Ig +rU +"} +(13,1,1) = {" +Hb +kZ +BC +ld +Lv +oo +BQ +rM +dt +LQ +PF +Fu +FR +jG +fD +Xi +oS +fm +kZ +Fo +dy +eU +kZ +wq +kZ +kZ +Ba +Ba +"} +(14,1,1) = {" +rU +kZ +kZ +fk +kZ +kZ +kZ +kZ +GW +cb +pz +sI +iF +wP +wY +Kv +AA +BH +UU +xK +aE +Ed +UU +CW +pO +kZ +bB +Ig +"} +(15,1,1) = {" +rU +kZ +Jt +Zh +YV +jb +kZ +GE +GW +fs +kF +EB +iF +wP +Xj +Kv +AA +rW +QI +PA +AN +Mn +QI +bV +jp +UU +bB +Ig +"} +(16,1,1) = {" +rU +kZ +WW +zR +sN +is +Fj +uj +GW +YH +LH +Pk +iF +wP +IP +Kv +Am +mk +UU +xI +dL +WN +UU +Vn +BB +kZ +bB +Ig +"} +(17,1,1) = {" +rU +Hb +kZ +WT +jY +Id +kZ +UK +Rp +Df +VY +NI +Gh +wP +fD +Kv +CZ +fm +kZ +mw +Zp +jw +kZ +Xl +kZ +kZ +Ba +Ba +"} +(18,1,1) = {" +rU +rU +Hb +kZ +UU +kZ +kZ +kZ +kZ +vk +ej +YB +kZ +UU +UU +UU +ej +sU +kZ +CH +UU +kZ +kZ +kZ +kZ +bB +Ig +rU +"} diff --git a/_maps/shuttles/ferry_nebula.dmm b/_maps/shuttles/ferry_nebula.dmm new file mode 100644 index 00000000000..cc15e6ab66d --- /dev/null +++ b/_maps/shuttles/ferry_nebula.dmm @@ -0,0 +1,365 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"b" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) +"c" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/directional/north, +/obj/structure/sign/poster/official/random/directional/north, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) +"h" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) +"i" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) +"j" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/transport) +"n" = ( +/obj/machinery/power/shuttle_engine/propulsion/left{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"o" = ( +/obj/machinery/power/shuttle_engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod/spawner/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"q" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"s" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/transport) +"t" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/shuttle/ferry/request{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"u" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/sign/flag/nanotrasen/directional/south, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"x" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"y" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/storage/fancy/coffee_condi_display{ + pixel_y = 11 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/reagent_containers/cup/glass/coffee{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"z" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/neutral, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"E" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"J" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/shuttle/transport) +"K" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/iron/dark/small, +/area/shuttle/transport) +"L" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/transport) +"M" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) +"N" = ( +/obj/structure/hedge, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"S" = ( +/turf/template_noop, +/area/template_noop) +"U" = ( +/obj/effect/turf_decal/trimline/neutral, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/end{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"V" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/docking_port/mobile{ + dir = 8; + shuttle_id = "ferry"; + name = "ferry shuttle"; + preferred_direction = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"W" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/digital_clock/directional/north, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) +"Z" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/iron/dark/textured, +/area/shuttle/transport) + +(1,1,1) = {" +S +n +n +n +S +"} +(2,1,1) = {" +s +o +o +o +s +"} +(3,1,1) = {" +L +N +t +u +L +"} +(4,1,1) = {" +j +h +U +b +j +"} +(5,1,1) = {" +i +c +a +b +M +"} +(6,1,1) = {" +q +Z +x +Z +q +"} +(7,1,1) = {" +M +h +a +K +i +"} +(8,1,1) = {" +j +h +z +b +j +"} +(9,1,1) = {" +i +W +E +y +i +"} +(10,1,1) = {" +i +J +z +J +i +"} +(11,1,1) = {" +i +j +V +j +i +"} diff --git a/_maps/shuttles/labour_nebula.dmm b/_maps/shuttles/labour_nebula.dmm new file mode 100644 index 00000000000..00fe3bb5e36 --- /dev/null +++ b/_maps/shuttles/labour_nebula.dmm @@ -0,0 +1,405 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/shuttle/labor) +"b" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/labor) +"h" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"i" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/labor) +"j" = ( +/obj/machinery/mineral/labor_claim_console{ + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/item/kirbyplants/organic/plant17, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 8 + }, +/area/shuttle/labor) +"k" = ( +/turf/open/floor/iron/dark/small, +/area/shuttle/labor) +"l" = ( +/obj/machinery/mineral/stacking_machine/laborstacker{ + input_dir = 2; + output_dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/shuttle/labor) +"r" = ( +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/structure/table/reinforced, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/shuttle/labor) +"v" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/dark/small, +/area/shuttle/labor) +"x" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"y" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/shuttle/labor) +"z" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/railing, +/turf/open/floor/iron/dark/textured, +/area/shuttle/labor) +"A" = ( +/obj/machinery/door/airlock/shuttle{ + id_tag = "prisonshuttle"; + name = "Labor Shuttle Airlock" + }, +/obj/docking_port/mobile{ + dir = 8; + shuttle_id = "laborcamp"; + name = "labor camp shuttle"; + port_direction = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"B" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/survival_pod/spawner/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"C" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/structure/sign/poster/official/obey/directional/west, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 4 + }, +/area/shuttle/labor) +"D" = ( +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_corner, +/area/shuttle/labor) +"F" = ( +/obj/effect/turf_decal/siding/dark_red/corner, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/dark_red{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"H" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/labor) +"I" = ( +/obj/effect/turf_decal/trimline/dark/warning{ + dir = 4 + }, +/turf/open/floor/iron/dark/small, +/area/shuttle/labor) +"J" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_y = -26; + req_access = list("security") + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/dark_red, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"L" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark, +/turf/open/floor/iron/dark/textured, +/area/shuttle/labor) +"N" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark/corner, +/obj/effect/turf_decal/trimline/dark/mid_joiner{ + dir = 1 + }, +/obj/machinery/digital_clock/directional/north{ + pixel_y = 24 + }, +/turf/open/floor/iron/dark/smooth_edge{ + dir = 1 + }, +/area/shuttle/labor) +"W" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"X" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "gulagshuttleflasher" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/turf/open/floor/iron/dark/smooth_corner{ + dir = 1 + }, +/area/shuttle/labor) +"Y" = ( +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 30; + pixel_y = 30 + }, +/obj/effect/turf_decal/siding/dark_red, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/dark_red{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/labor) +"Z" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/trimline/dark, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/dark/mid_joiner, +/obj/structure/railing/corner/end/flip{ + dir = 8 + }, +/obj/structure/railing/corner/end{ + dir = 4 + }, +/turf/open/floor/iron/dark/smooth_edge, +/area/shuttle/labor) + +(1,1,1) = {" +H +H +x +H +x +H +x +b +i +"} +(2,1,1) = {" +W +z +F +y +D +C +v +B +h +"} +(3,1,1) = {" +W +L +J +b +N +Z +k +B +h +"} +(4,1,1) = {" +W +r +Y +l +j +X +I +B +h +"} +(5,1,1) = {" +H +H +a +H +H +H +A +b +i +"} diff --git a/_maps/shuttles/mining_nebula.dmm b/_maps/shuttles/mining_nebula.dmm new file mode 100644 index 00000000000..95c7be283bb --- /dev/null +++ b/_maps/shuttles/mining_nebula.dmm @@ -0,0 +1,445 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"b" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron/textured_large, +/area/shuttle/mining/large) +"d" = ( +/obj/structure/table, +/obj/item/storage/medkit/regular{ + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"e" = ( +/obj/machinery/power/shuttle_engine/propulsion, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"i" = ( +/obj/structure/sign/warning/vacuum/external/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"j" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"l" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"o" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"p" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/structure/railing, +/obj/effect/mapping_helpers/apc/cell_10k, +/turf/open/floor/iron/textured_large, +/area/shuttle/mining/large) +"r" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"s" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"t" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"u" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Mining Shuttle External Airlock" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"x" = ( +/obj/machinery/door/airlock/external/ruin{ + name = "Mining Shuttle External Airlock" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/docking_port/mobile{ + shuttle_id = "mining"; + name = "mining shuttle"; + port_direction = 2 + }, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"y" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"z" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining/large) +"B" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"C" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Shuttle Cockpit" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"D" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"G" = ( +/turf/template_noop, +/area/template_noop) +"H" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/window/reinforced/spawner/directional/west, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"I" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining/large) +"K" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/obj/item/radio{ + pixel_x = -5 + }, +/obj/item/radio{ + pixel_x = 5 + }, +/obj/item/radio, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/iron/textured_large, +/area/shuttle/mining/large) +"M" = ( +/obj/effect/spawner/structure/window/reinforced/shuttle, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"N" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/utility/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/north, +/obj/structure/railing, +/turf/open/floor/iron/textured_large, +/area/shuttle/mining/large) +"O" = ( +/obj/machinery/power/shuttle_engine/heater, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/plating, +/area/shuttle/mining/large) +"P" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/obj/structure/flora/bush/large/style_2{ + pixel_y = 0 + }, +/turf/open/floor/grass, +/area/shuttle/mining/large) +"R" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/stock_parts/power_store/cell/high, +/obj/item/screwdriver, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"S" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"T" = ( +/obj/structure/window/reinforced/spawner/directional/north, +/obj/structure/window/reinforced/spawner/directional/south, +/obj/structure/window/reinforced/spawner/directional/west, +/obj/structure/flora/bush/fullgrass/style_random, +/obj/structure/flora/bush/grassy/style_random, +/obj/structure/flora/grass/jungle/b/style_random, +/obj/structure/flora/bush/lavendergrass/style_random, +/obj/structure/flora/bush/leafy, +/obj/structure/flora/bush/flowers_br/style_random, +/obj/structure/window/reinforced/spawner/directional/east, +/turf/open/floor/grass, +/area/shuttle/mining/large) +"U" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/south, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 4 + }, +/turf/open/floor/iron/textured_large, +/area/shuttle/mining/large) +"V" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"X" = ( +/obj/structure/table, +/obj/item/radio/intercom/directional, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"Y" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/flashlight, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) +"Z" = ( +/obj/machinery/holopad{ + pixel_x = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining/large) + +(1,1,1) = {" +G +M +M +I +I +I +M +O +e +G +"} +(2,1,1) = {" +M +M +P +U +z +N +b +Y +j +e +"} +(3,1,1) = {" +M +X +l +a +T +s +o +M +I +M +"} +(4,1,1) = {" +M +t +B +Z +C +S +V +u +i +x +"} +(5,1,1) = {" +M +d +r +y +T +D +D +M +I +M +"} +(6,1,1) = {" +M +M +P +K +z +p +b +R +j +e +"} +(7,1,1) = {" +G +M +M +I +I +I +M +H +e +G +"} diff --git a/code/datums/shuttles/arrival.dm b/code/datums/shuttles/arrival.dm index 645147ee5ba..c609ccc5741 100644 --- a/code/datums/shuttles/arrival.dm +++ b/code/datums/shuttles/arrival.dm @@ -29,3 +29,7 @@ /datum/map_template/shuttle/arrival/northstar suffix = "northstar" name = "arrival shuttle (North Star)" + +/datum/map_template/shuttle/arrival/nebula + suffix = "nebula" + name = "arrival shuttle (Nebula)" diff --git a/code/datums/shuttles/cargo.dm b/code/datums/shuttles/cargo.dm index 8f5d83619f4..209ec59f66f 100644 --- a/code/datums/shuttles/cargo.dm +++ b/code/datums/shuttles/cargo.dm @@ -30,3 +30,7 @@ /datum/map_template/shuttle/cargo/northstar suffix = "northstar" name = "cargo ferry (North Star)" + +/datum/map_template/shuttle/cargo/nebula + suffix = "nebula" + name = "supply shuttle (Nebula)" diff --git a/code/datums/shuttles/emergency.dm b/code/datums/shuttles/emergency.dm index bc246bf08ad..3cd888af742 100644 --- a/code/datums/shuttles/emergency.dm +++ b/code/datums/shuttles/emergency.dm @@ -479,6 +479,14 @@ credit_cost = CARGO_CRATE_VALUE * 14 occupancy_limit = "55" +/datum/map_template/shuttle/emergency/nebula + suffix = "nebula" + name = "Nebula Station Emergency Shuttle" + description = "AAn excellent luxury shuttle for transporting a large number of passengers. \ + It is richly equipped with bushes and free oxygen" + credit_cost = CARGO_CRATE_VALUE * 18 + occupancy_limit = "80" + /datum/map_template/shuttle/emergency/raven suffix = "raven" name = "CentCom Raven Cruiser" diff --git a/code/datums/shuttles/ferry.dm b/code/datums/shuttles/ferry.dm index a0d3eac82d9..f9c5841abf3 100644 --- a/code/datums/shuttles/ferry.dm +++ b/code/datums/shuttles/ferry.dm @@ -33,3 +33,13 @@ suffix = "kilo" name = "kilo transport ferry" description = "Standard issue CentCom Ferry for Kilo pattern stations. Includes additional equipment and rechargers." + +/datum/map_template/shuttle/ferry/northstar + suffix = "northstar" + name = "north star transport ferry" + description = "In the very depths of the frontier, you'll need a rugged shuttle capable of delivering crew, this is that." + +/datum/map_template/shuttle/ferry/nebula + suffix = "nebula" + name = "nebula transport ferry" + description = "A good ferry for a graceful trip with a breeze. Comes with rechargers." diff --git a/code/datums/shuttles/mining.dm b/code/datums/shuttles/mining.dm index ffd5cb04785..21747a488e3 100644 --- a/code/datums/shuttles/mining.dm +++ b/code/datums/shuttles/mining.dm @@ -19,6 +19,10 @@ suffix = "kilo" name = "labour shuttle (Kilo)" +/datum/map_template/shuttle/labour/nebula + suffix = "nebula" + name = "labour shuttle (Nebula)" + // MINING SHUTTLES /datum/map_template/shuttle/mining port_id = "mining" @@ -44,6 +48,10 @@ suffix = "northstar" name = "mining shuttle (North Star)" +/datum/map_template/shuttle/mining/nebula + suffix = "nebula" + name = "mining shuttle (Nebula)" + // MINING COMMON SHUTTLES /datum/map_template/shuttle/mining_common port_id = "mining_common" diff --git a/code/game/area/areas/station/cargo.dm b/code/game/area/areas/station/cargo.dm index 323a564c495..8e892efda95 100644 --- a/code/game/area/areas/station/cargo.dm +++ b/code/game/area/areas/station/cargo.dm @@ -29,6 +29,14 @@ name = "\improper Cargo Office" icon_state = "cargo_office" +/area/station/cargo/lower + name = "\improper Lower Cargo Bay" + icon_state = "lower_cargo" + +/area/station/cargo/breakroom + name = "\improper Cargo Break Room" + icon_state = "cargo_breakroom" + /area/station/cargo/storage name = "\improper Cargo Bay" icon_state = "cargo_bay" @@ -54,6 +62,10 @@ name = "\improper Mining Office" icon_state = "mining" +/area/station/cargo/mining_breakroom + name = "\improper Mining Break Room" + icon_state = "mining_breakroom" + /area/station/cargo/miningfoundry name = "\improper Mining Foundry" icon_state = "mining_foundry" diff --git a/code/game/area/areas/station/common.dm b/code/game/area/areas/station/common.dm index eb8a0380ddc..2280215ab6e 100644 --- a/code/game/area/areas/station/common.dm +++ b/code/game/area/areas/station/common.dm @@ -68,6 +68,10 @@ name = "\improper Restrooms" icon_state = "toilet" +/area/station/commons/toilet/shower + name = "\improper Shower Room" + icon_state = "shower" + /* * Rec and Locker Rooms */ @@ -108,6 +112,18 @@ name = "\improper Entertainment Center" icon_state = "entertainment" +/area/station/commons/fitness/recreation/pool + name = "\improper Swimming Pool" + icon_state = "pool" + +/area/station/commons/fitness/recreation/lasertag + name = "\improper Laser Tag Arena" + icon_state = "lasertag" + +/area/station/commons/fitness/recreation/sauna + name = "\improper Sauna" + icon_state = "sauna" + /* * Vacant Rooms */ diff --git a/code/game/area/areas/station/engineering.dm b/code/game/area/areas/station/engineering.dm index fa051833ef5..6925aa4d096 100644 --- a/code/game/area/areas/station/engineering.dm +++ b/code/game/area/areas/station/engineering.dm @@ -86,6 +86,11 @@ icon_state = "engine_sm_room" sound_environment = SOUND_AREA_LARGE_ENCLOSED +/area/station/engineering/supermatter/room/upper + name = "\improper Upper Supermatter Engine Room" + icon_state = "engine_sm_room_upper" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + /area/station/engineering/break_room name = "\improper Engineering Foyer" icon_state = "engine_break" diff --git a/code/game/area/areas/station/medical.dm b/code/game/area/areas/station/medical.dm index b45a1492b29..3b77a7a1a66 100644 --- a/code/game/area/areas/station/medical.dm +++ b/code/game/area/areas/station/medical.dm @@ -19,6 +19,10 @@ name = "Medbay Central" icon_state = "med_central" +/area/station/medical/lower + name = "\improper Lower Medbay" + icon_state = "lower_med" + /area/station/medical/medbay/lobby name = "\improper Medbay Lobby" icon_state = "med_lobby" diff --git a/code/game/area/areas/station/security.dm b/code/game/area/areas/station/security.dm index ca158e69df8..1faf889684c 100644 --- a/code/game/area/areas/station/security.dm +++ b/code/game/area/areas/station/security.dm @@ -39,6 +39,10 @@ name = "\improper Brig Overlook" icon_state = "upperbrig" +/area/station/security/brig/lower + name = "\improper Lower Brig" + icon_state = "lower_brig" + /area/station/security/brig/entrance name = "\improper Brig Entrance" icon_state = "brigentry" diff --git a/code/game/area/areas/station/service.dm b/code/game/area/areas/station/service.dm index 6d3054f934f..f315a055f2e 100644 --- a/code/game/area/areas/station/service.dm +++ b/code/game/area/areas/station/service.dm @@ -9,6 +9,10 @@ name = "\improper Cafeteria" icon_state = "cafeteria" +/area/station/service/minibar + name = "\improper Mini Bar" + icon_state = "minibar" + /area/station/service/kitchen name = "\improper Kitchen" icon_state = "kitchen" @@ -57,9 +61,14 @@ icon_state = "theatre" sound_environment = SOUND_AREA_WOODFLOOR +/area/station/service/theater_dressing + name = "\improper Theater Dressing Room" + icon_state = "theatre_dressing" + sound_environment = SOUND_AREA_SMALL_SOFTFLOOR + /area/station/service/greenroom name = "\improper Greenroom" - icon_state = "theatre" + icon_state = "theatre_green" sound_environment = SOUND_AREA_SMALL_SOFTFLOOR /area/station/service/library @@ -178,6 +187,10 @@ name = "\improper Barber" icon_state = "barber" +/area/station/service/boutique + name = "\improper Boutique" + icon_state = "boutique" + /* * Abandoned Rooms */ diff --git a/code/modules/mining/laborcamp/laborshuttle.dm b/code/modules/mining/laborcamp/laborshuttle.dm index 3687ac71633..2afed2342af 100644 --- a/code/modules/mining/laborcamp/laborshuttle.dm +++ b/code/modules/mining/laborcamp/laborshuttle.dm @@ -37,3 +37,6 @@ /obj/docking_port/stationary/laborcamp_home/kilo roundstart_template = /datum/map_template/shuttle/labour/kilo + +/obj/docking_port/stationary/laborcamp_home/nebula + roundstart_template = /datum/map_template/shuttle/labour/nebula diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index accd15cf37b..abfa7d5e1a9 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -139,6 +139,10 @@ roundstart_template = /datum/map_template/shuttle/mining/northstar height = 6 +/obj/docking_port/stationary/mining_home/nebula + roundstart_template = /datum/map_template/shuttle/mining/nebula + height = 10 + /obj/docking_port/stationary/mining_home/common name = "SS13: Common Mining Dock" shuttle_id = "commonmining_home" diff --git a/config/maps.txt b/config/maps.txt index 9ed4a832ff1..0c882c8cfc6 100644 --- a/config/maps.txt +++ b/config/maps.txt @@ -47,6 +47,11 @@ map tramstation votable endmap +map nebulastation + minplayers 35 + votable +endmap + map wawastation votable minplayers 40 diff --git a/icons/area/areas_station.dmi b/icons/area/areas_station.dmi index 724073905b5930fd3ea2b0ead159d7cc5bad235b..7d6739d9bbdabb0d2f72be1feab234db70b06828 100644 GIT binary patch literal 45884 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 OjIP#$dlee?QU3=FE~0z@ literal 46276 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 e;!qgW9-x)dqBYw9ss&IMWNLiVsQjwS Date: Thu, 12 Dec 2024 19:45:59 +0300 Subject: [PATCH 20/91] Automatic changelog for PR #5218 [ci skip] --- html/changelogs/AutoChangeLog-pr-5218.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5218.yml diff --git a/html/changelogs/AutoChangeLog-pr-5218.yml b/html/changelogs/AutoChangeLog-pr-5218.yml new file mode 100644 index 00000000000..ccb66b49d7e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5218.yml @@ -0,0 +1,4 @@ +author: "Steals-The-PRs" +delete-after: True +changes: + - rscadd: "Nebulastation, new station map" \ No newline at end of file From 0e45c2a0c952c074cf9edeb99dc9017c01dddc6e Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:51:29 +0000 Subject: [PATCH 21/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5218.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5221.yml | 6 ------ html/changelogs/AutoChangeLog-pr-5222.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5223.yml | 7 ------- html/changelogs/AutoChangeLog-pr-5224.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5225.yml | 5 ----- html/changelogs/archive/2024-12.yml | 23 +++++++++++++++++++++++ 7 files changed, 23 insertions(+), 30 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5218.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5221.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5222.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5223.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5224.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5225.yml diff --git a/html/changelogs/AutoChangeLog-pr-5218.yml b/html/changelogs/AutoChangeLog-pr-5218.yml deleted file mode 100644 index ccb66b49d7e..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5218.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Steals-The-PRs" -delete-after: True -changes: - - rscadd: "Nebulastation, new station map" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5221.yml b/html/changelogs/AutoChangeLog-pr-5221.yml deleted file mode 100644 index 06616c5f8ab..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5221.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "OrbisAnima" -delete-after: True -changes: - - balance: "Bitrunning Domains now give double points" - - qol: "Pizza Delivery for bitrunners now include the new Sausage pizza on their possible sponsors!" - - balance: "Bitrunner disks are now small sized, from normal." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5222.yml b/html/changelogs/AutoChangeLog-pr-5222.yml deleted file mode 100644 index efd6e1f2330..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5222.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Kocma-san" -delete-after: True -changes: - - rscadd: "new weather - snowfall" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5223.yml b/html/changelogs/AutoChangeLog-pr-5223.yml deleted file mode 100644 index 16d64ab4259..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5223.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "Stalkeros" -delete-after: True -changes: - - rscadd: "New bitrunning disk, allowing you to either install a single-use NIF, or summon a Very Interesting Vending Machine." - - rscadd: "MilSim DLC disk's Marksman was granted infinite supplies of throwing knives and a sonar at the cost of invisibility." - - qol: "You can now join as your own character in the Syndicate Assault and Island Brawl domains." - - bugfix: "Names should show up on Syndicate Assault, Pirate Cove, and Island Brawl IDs once again." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5224.yml b/html/changelogs/AutoChangeLog-pr-5224.yml deleted file mode 100644 index 170798989d6..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5224.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "sqnztb" -delete-after: True -changes: - - map: "Snowglobe - added stacking machine to disposals." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5225.yml b/html/changelogs/AutoChangeLog-pr-5225.yml deleted file mode 100644 index 855160d4c4c..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5225.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "Hardly" -delete-after: True -changes: - - balance: "Railgun PKAs can no longer be fired on station" - - code_imp: "Allows restricted PKAs to be fired in Serenity exterior" \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index 39c38644d50..f0c29603f6b 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -726,5 +726,28 @@ RashCat: - rscadd: Some private items for the winners of FF poster contest 2024-12-12: + Hardly: + - balance: Railgun PKAs can no longer be fired on station + - code_imp: Allows restricted PKAs to be fired in Serenity exterior + Kocma-san: + - rscadd: new weather - snowfall + OrbisAnima: + - balance: Bitrunning Domains now give double points + - qol: Pizza Delivery for bitrunners now include the new Sausage pizza on their + possible sponsors! + - balance: Bitrunner disks are now small sized, from normal. Smol42: - bugfix: fixed some minor issues. + Stalkeros: + - rscadd: New bitrunning disk, allowing you to either install a single-use NIF, + or summon a Very Interesting Vending Machine. + - rscadd: MilSim DLC disk's Marksman was granted infinite supplies of throwing knives + and a sonar at the cost of invisibility. + - qol: You can now join as your own character in the Syndicate Assault and Island + Brawl domains. + - bugfix: Names should show up on Syndicate Assault, Pirate Cove, and Island Brawl + IDs once again. + Steals-The-PRs: + - rscadd: Nebulastation, new station map + sqnztb: + - map: Snowglobe - added stacking machine to disposals. From 992df273a8fd487df2da38dea8cd093face64845 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:17:57 +0300 Subject: [PATCH 22/91] [MIRROR] Sec helmet fixes (#5227) * Sec helmet fixes (#4673) * Sec helmet fixes * Apparently these aren't pepperproof on tg * I copy pasted too hard * [MIRROR] Sec helmet fixes --------- Co-authored-by: FlufflesTheDog Co-authored-by: StealsThePRs --- .../icons/mob/clothing/head/helmet.dmi | Bin 15884 -> 14886 bytes .../mob/clothing/head/helmet_muzzled.dmi | Bin 25368 -> 22328 bytes .../icons/obj/clothing/head/helmet.dmi | Bin 4539 -> 4539 bytes .../goofsec/code/sec_clothing_overrides.dm | 39 ++++-------------- .../code/peacekeeper/peacekeeper_clothing.dm | 4 ++ 5 files changed, 11 insertions(+), 32 deletions(-) diff --git a/modular_nova/master_files/icons/mob/clothing/head/helmet.dmi b/modular_nova/master_files/icons/mob/clothing/head/helmet.dmi index 6043c7fa83e02613c0625abf48fc4cec97c661c6..9901f891dd864a69a5cccb1939f3932af4394f89 100644 GIT binary patch literal 14886 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 P#CxWu`?UIrP3ZpsdK5+? literal 15884 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 Pc|#ACpD2|mm<0YWl?tO< diff --git a/modular_nova/master_files/icons/mob/clothing/head/helmet_muzzled.dmi b/modular_nova/master_files/icons/mob/clothing/head/helmet_muzzled.dmi index 3973cd8a4566bf6d01a843c1e4646c70f921ef78..7aaff19f2b0d45b163f8a0c9cfe94d0ce64be8bc 100644 GIT binary patch literal 22328 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 diff --git a/modular_nova/master_files/icons/obj/clothing/head/helmet.dmi b/modular_nova/master_files/icons/obj/clothing/head/helmet.dmi index 29734b04958752437193caa612a836627fc491f9..21042f38bd75a58ef3b7abf6fafc53f11a1efa05 100644 GIT binary patch delta 267 zcmV+m0rdX6BfBGzI)A}R12GVW&zq+R?YW}XtA|P#Ez(ljUOWwPcj^X{O_W`6eHUtke|Rt1FT1Nm=a9pF+T*A{Q;n_5ph{wkK(TZy8Q8AREm&22X!jVrPA>w%?hMGw=R`s$T zRe`UF9w~N8zbml~{nd<|Rg2~Scxh5EZIv;F^JhGD_+jAA!QXZcqIYgA^VR(PU%mqj RnWDg~{LWth0JAs&gAjrYj8p&s delta 267 zcmV+m0rdX6BfBGzI)6QH!Y~kq=lEAxFoXKR+5tpFQB_m{ODD@DM`K~f*7*YE-!~-^ z1GL1B*zV-#kzbw8?(<1Hn=knEea`lPUfGhr@X_#rB?pyLQ8&*|EGa;J71T7IBtc#F zR&Srn@tS{(S8M*7F4G=Ma)rJ=dSuBKrGchC3m&ox6&*zZ+J6AW@`J7ZP0>*s*fQ3v zT)fdS1?i%%Y1RMZoodBuYYA8QID@kQwX% z9AM~9UMryk{nrfKOau9Syf~?qHd5=%x)UC|_M)_VO0JAs&gAgCYgR}qu diff --git a/modular_nova/modules/goofsec/code/sec_clothing_overrides.dm b/modular_nova/modules/goofsec/code/sec_clothing_overrides.dm index 70ff51c36d0..5370957d124 100644 --- a/modular_nova/modules/goofsec/code/sec_clothing_overrides.dm +++ b/modular_nova/modules/goofsec/code/sec_clothing_overrides.dm @@ -234,37 +234,15 @@ base_icon_state = "security_helmet" actions_types = list(/datum/action/item_action/toggle) supports_variations_flags = CLOTHING_SNOUTED_VARIATION - flags_cover = HEADCOVERSEYES | PEPPERPROOF - visor_flags_cover = HEADCOVERSEYES | PEPPERPROOF + flags_cover = parent_type::flags_cover | PEPPERPROOF dog_fashion = null - ///chat message when the visor is toggled down. - var/toggle_message = "You pull the visor down on" - ///chat message when the visor is toggled up. - var/alt_toggle_message = "You push the visor up on" - ///Can toggle? - var/can_toggle = TRUE - -/// Duplication of toggleable logic - only way to make it toggleable without worse hacks due to being in base maps. -/obj/item/clothing/head/helmet/sec/attack_self(mob/user) +/obj/item/clothing/head/helmet/sec/click_alt(mob/user) . = ..() - if(.) - return - if(user.incapacitated || !can_toggle) - return - up = !up - flags_1 ^= visor_flags - flags_inv ^= visor_flags_inv - flags_cover ^= visor_flags_cover - // This part is changed to work with the seclight. - base_icon_state = "[initial(icon_state)][up ? "up" : ""]" - update_icon_state() - to_chat(user, span_notice("[up ? alt_toggle_message : toggle_message] \the [src].")) - - user.update_worn_head() - if(iscarbon(user)) - var/mob/living/carbon/carbon_user = user - carbon_user.update_worn_head() + if (flipped_visor) + flags_cover &= ~PEPPERPROOF + else + flags_cover |= PEPPERPROOF //Beret replacement @@ -839,11 +817,8 @@ worn_icon = 'icons/mob/clothing/head/helmet.dmi' icon_state = "helmet" base_icon_state = "helmet" - actions_types = null - can_toggle = FALSE supports_variations_flags = CLOTHING_SNOUTED_VARIATION_NO_NEW_ICON - flags_cover = HEADCOVERSEYES - flags_inv = HIDEHAIR + dog_fashion = /datum/dog_fashion/head/helmet /* * UNIFORM diff --git a/modular_nova/modules/sec_haul/code/peacekeeper/peacekeeper_clothing.dm b/modular_nova/modules/sec_haul/code/peacekeeper/peacekeeper_clothing.dm index 733155827d0..d4500fed831 100644 --- a/modular_nova/modules/sec_haul/code/peacekeeper/peacekeeper_clothing.dm +++ b/modular_nova/modules/sec_haul/code/peacekeeper/peacekeeper_clothing.dm @@ -40,8 +40,12 @@ base_icon_state = "security_helmet_novisor" actions_types = NONE supports_variations_flags = CLOTHING_SNOUTED_VARIATION_NO_NEW_ICON + flags_cover = /obj/item/clothing/head/helmet::flags_cover armor_type = /datum/armor/head_helmet +/obj/item/clothing/head/helmet/sec/sol/click_alt(mob/user) + return NONE // No visor to flip + /obj/item/clothing/head/hats/warden/police/patrol name = "police patrol cap" desc = "A dark colored hat with a silver badge, for the officer interested in style." From eccdcdfbc811eafb434c893f1f653046cb371d20 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:18:23 +0300 Subject: [PATCH 23/91] Automatic changelog for PR #5227 [ci skip] --- html/changelogs/AutoChangeLog-pr-5227.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5227.yml diff --git a/html/changelogs/AutoChangeLog-pr-5227.yml b/html/changelogs/AutoChangeLog-pr-5227.yml new file mode 100644 index 00000000000..8afe2a586ca --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5227.yml @@ -0,0 +1,4 @@ +author: "FlufflesTheDog" +delete-after: True +changes: + - bugfix: "sec helmet visor flipping works properly, and is now done via alt click." \ No newline at end of file From fdc4ef4a9dc48d0b05e0613708648c09a6e468f2 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:18:30 +0300 Subject: [PATCH 24/91] [MIRROR] [No GBP] Fixes of the Special Bitrunning Vending Machine (#5228) * [No GBP] Fixes of the Special Bitrunning Vending Machine (#4676) waow * [MIRROR] [No GBP] Fixes of the Special Bitrunning Vending Machine --------- Co-authored-by: Stalkeros <42087567+Stalkeros2@users.noreply.github.com> Co-authored-by: StealsThePRs --- modular_nova/modules/bitrunning/code/disks.dm | 8 +++++++- .../lewd_items/code/lewd_items/size_items.dm | 5 +++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/modular_nova/modules/bitrunning/code/disks.dm b/modular_nova/modules/bitrunning/code/disks.dm index 5d350a941e9..dedc09a3853 100644 --- a/modular_nova/modules/bitrunning/code/disks.dm +++ b/modular_nova/modules/bitrunning/code/disks.dm @@ -91,6 +91,10 @@ allowed_areas = list( /area/virtual_domain, + /area/space/virtual_domain, + /area/ruin/space/virtual_domain, + /area/icemoon/underground/explored/virtual_domain, + /area/lavaland/surface/outdoors/virtual_domain, ) selectable_atoms = list( @@ -100,8 +104,10 @@ area_string = "virtual domains" supply_pod_stay = FALSE -/obj/machinery/vending/dorms/bitrunning +/obj/machinery/vending/dorms/bitrunning/Initialize(mapload) + . = ..() all_products_free = TRUE + onstation = FALSE /datum/orderable_item/bitrunning_tech/item_tierlewd cost_per_order = 250 diff --git a/modular_nova/modules/modular_items/lewd_items/code/lewd_items/size_items.dm b/modular_nova/modules/modular_items/lewd_items/code/lewd_items/size_items.dm index 296ba9d535e..d495c905998 100644 --- a/modular_nova/modules/modular_items/lewd_items/code/lewd_items/size_items.dm +++ b/modular_nova/modules/modular_items/lewd_items/code/lewd_items/size_items.dm @@ -15,6 +15,11 @@ /area/centcom/interlink/dorm_rooms, /area/centcom/holding/cafedorms, /area/misc/hilbertshotel, + /area/virtual_domain, + /area/space/virtual_domain, + /area/ruin/space/virtual_domain, + /area/icemoon/underground/explored/virtual_domain, + /area/lavaland/surface/outdoors/virtual_domain, ) /obj/item/clothing/neck/size_collar/attack_self(mob/user, modifiers) From 5c037f20f1785d0262f370731bb3f5468c9d221e Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:18:43 +0300 Subject: [PATCH 25/91] [MIRROR] Build(deps): bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.2 (#5230) * Build(deps): bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.2 (#4654) Build(deps): bump JamesIves/github-pages-deploy-action Bumps [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) from 4.6.9 to 4.7.2. - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.6.9...v4.7.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * [MIRROR] Build(deps): bump JamesIves/github-pages-deploy-action from 4.6.9 to 4.7.2 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: StealsThePRs From 09c8ad502956f2b071d478cae741689a4a46b3e3 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:18:56 +0300 Subject: [PATCH 26/91] Automatic changelog for PR #5228 [ci skip] --- html/changelogs/AutoChangeLog-pr-5228.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5228.yml diff --git a/html/changelogs/AutoChangeLog-pr-5228.yml b/html/changelogs/AutoChangeLog-pr-5228.yml new file mode 100644 index 00000000000..351c16e93a1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5228.yml @@ -0,0 +1,4 @@ +author: "Stalkeros" +delete-after: True +changes: + - bugfix: "Very Interesting Vending Machine that bitrunners have can now actually be used, no longer requiring money nor access." \ No newline at end of file From da6982d797b43e7cf19c0423fb8dd3174b3f9ccc Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:19:04 +0300 Subject: [PATCH 27/91] [MIRROR] changes up alot of the underwears to be better shaded, in piecemeal (#5231) * changes up alot of the underwears to be better shaded, in piecemeal (#4648) * Update socks.dm * Update underwear.dm * Update bras.dm * Add files via upload * Add files via upload * Leggings icon_state path fix * Update modular_nova/modules/customization/modules/mob/dead/new_player/sprite_accessories/underwear/socks.dm --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] changes up alot of the underwears to be better shaded, in piecemeal --------- Co-authored-by: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs --- .../icons/mob/clothing/underwear.dmi | Bin 107732 -> 108983 bytes .../sprite_accessories/underwear/bras.dm | 2 -- .../sprite_accessories/underwear/socks.dm | 23 +++++++++++++++++- .../sprite_accessories/underwear/underwear.dm | 2 -- 4 files changed, 22 insertions(+), 5 deletions(-) diff --git a/modular_nova/master_files/icons/mob/clothing/underwear.dmi b/modular_nova/master_files/icons/mob/clothing/underwear.dmi index de3f59856e698eb3cbebe9184f802029434ce4fe..cec753b3e169febbe7e635b9c9c86cea0b255370 100644 GIT binary patch delta 45490 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 BF&+Q_ delta 44352 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 eEo-n>utxYjvB@T#6M@KRwcmHdw(w7{EB^&cZY? Date: Sat, 14 Dec 2024 12:19:28 +0300 Subject: [PATCH 28/91] [MIRROR] reduced the items used, and the time to make for most improvised tools (#5233) * reduced the items used, and the time to make for most improvised tools (#4650) * Update recipes_misc.dm * Fix this list formatting while we are at it --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] reduced the items used, and the time to make for most improvised tools --------- Co-authored-by: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs --- .../modular_items/code/recipes_misc.dm | 45 ++++++++++--------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/modular_nova/modules/modular_items/code/recipes_misc.dm b/modular_nova/modules/modular_items/code/recipes_misc.dm index 63c23024520..93ae9cd0da8 100644 --- a/modular_nova/modules/modular_items/code/recipes_misc.dm +++ b/modular_nova/modules/modular_items/code/recipes_misc.dm @@ -1,20 +1,22 @@ /datum/crafting_recipe/makeshift/crowbar name = "Makeshift Crowbar" result = /obj/item/crowbar/makeshift - reqs = list(/obj/item/stack/sheet/iron = 4, - /obj/item/stack/sheet/cloth = 1, - /obj/item/stack/cable_coil = 1) - time = 120 + reqs = list( + /obj/item/stack/sheet/iron = 4, + /obj/item/stack/sheet/cloth = 1, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/screwdriver name = "Makeshift Screwdriver" tool_paths = list(/obj/item/crowbar/makeshift) result = /obj/item/screwdriver/makeshift - reqs = list(/obj/item/stack/cable_coil = 1, - /obj/item/stack/sheet/cloth = 2, - /obj/item/stack/rods = 2) - time = 80 + reqs = list( + /obj/item/stack/sheet/cloth = 2, + /obj/item/stack/rods = 2, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/welder @@ -22,11 +24,12 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) result = /obj/item/weldingtool/makeshift - reqs = list(/obj/item/tank/internals/emergency_oxygen = 1, - /obj/item/stack/sheet/iron = 6, - /obj/item/stack/sheet/glass = 2, - /obj/item/stack/cable_coil = 2) - time = 160 + reqs = list( + /obj/item/tank/internals/emergency_oxygen = 1, + /obj/item/stack/sheet/iron = 6, + /obj/item/lighter, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/wirecutters @@ -34,9 +37,8 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER) result = /obj/item/wirecutters/makeshift - reqs = list(/obj/item/stack/cable_coil = 2, - /obj/item/stack/rods = 4) - time = 80 + reqs = list(/obj/item/stack/rods = 4) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/wrench @@ -44,9 +46,10 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER) result = /obj/item/wrench/makeshift - reqs = list(/obj/item/stack/cable_coil = 1, - /obj/item/stack/sheet/iron = 3, - /obj/item/stack/rods = 1, - /obj/item/stack/sheet/cloth = 2) - time = 80 + reqs = list( + /obj/item/stack/sheet/iron = 3, + /obj/item/stack/rods = 1, + /obj/item/stack/sheet/cloth = 2, + ) + time = 60 category = CAT_MISC From d9180143700119e6e7dc3b422952112075673040 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:19:31 +0300 Subject: [PATCH 29/91] Automatic changelog for PR #5231 [ci skip] --- html/changelogs/AutoChangeLog-pr-5231.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5231.yml diff --git a/html/changelogs/AutoChangeLog-pr-5231.yml b/html/changelogs/AutoChangeLog-pr-5231.yml new file mode 100644 index 00000000000..f25150cbebf --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5231.yml @@ -0,0 +1,4 @@ +author: "RatFromTheJungle" +delete-after: True +changes: + - image: "adds greyscaling to some of the hard-colored underwears, so you can change the color, also adds thighhighs+kneehighs (shaded) for the drip-fest" \ No newline at end of file From bada5360d7a88c9cb552b1b8e1ffdb6cb92b53ee Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:19:53 +0300 Subject: [PATCH 30/91] [MIRROR] Fixes ears getting sprites they shouldn't be getting when they're set to not having visuals (#5234) * Fixes ears getting sprites they shouldn't be getting when they're set to not having visuals (#4641) * Fixes ears getting sprites they shouldn't be getting when they're set to not having visuals * Swap this to enter_wardrobe --------- Co-authored-by: Fluffles * [MIRROR] Fixes ears getting sprites they shouldn't be getting when they're set to not having visuals --------- Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com> Co-authored-by: Fluffles Co-authored-by: StealsThePRs --- code/modules/surgery/organs/internal/_internal_organ.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/surgery/organs/internal/_internal_organ.dm b/code/modules/surgery/organs/internal/_internal_organ.dm index 8b7bd354931..2568ca942cd 100644 --- a/code/modules/surgery/organs/internal/_internal_organ.dm +++ b/code/modules/surgery/organs/internal/_internal_organ.dm @@ -75,6 +75,7 @@ //See above /obj/item/organ/internal/enter_wardrobe() + bodypart_overlay?.imprint_on_next_insertion = TRUE // NOVA EDIT ADDITION - Make sure whoever gets it next gets the right DNA STOP_PROCESSING(SSobj, src) ///Organs don't die instantly, and neither should you when you get fucked up From f61a9628a2ae14e6d1c86d4dc65d9a00363208be Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:20:19 +0300 Subject: [PATCH 31/91] Automatic changelog for PR #5234 [ci skip] --- html/changelogs/AutoChangeLog-pr-5234.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5234.yml diff --git a/html/changelogs/AutoChangeLog-pr-5234.yml b/html/changelogs/AutoChangeLog-pr-5234.yml new file mode 100644 index 00000000000..50bc19c2c88 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5234.yml @@ -0,0 +1,4 @@ +author: "GoldenAlpharex" +delete-after: True +changes: + - bugfix: "Synths and slimefolks should no longer be getting weird ears suddenly growing on their heads overnight, and should properly get the ears (or lack thereof) they rightfully deserve from their genetics (or whatever the equivalent of genetics is for synthetic beings... Blueprints?)." \ No newline at end of file From 0f8c59983c154d7d2cf5b8f04d8b5665bc06ee7b Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:35:22 +0000 Subject: [PATCH 32/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5227.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5228.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5231.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5234.yml | 4 ---- html/changelogs/archive/2024-12.yml | 14 ++++++++++++++ 5 files changed, 14 insertions(+), 16 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5227.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5228.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5231.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5234.yml diff --git a/html/changelogs/AutoChangeLog-pr-5227.yml b/html/changelogs/AutoChangeLog-pr-5227.yml deleted file mode 100644 index 8afe2a586ca..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5227.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "FlufflesTheDog" -delete-after: True -changes: - - bugfix: "sec helmet visor flipping works properly, and is now done via alt click." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5228.yml b/html/changelogs/AutoChangeLog-pr-5228.yml deleted file mode 100644 index 351c16e93a1..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5228.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Stalkeros" -delete-after: True -changes: - - bugfix: "Very Interesting Vending Machine that bitrunners have can now actually be used, no longer requiring money nor access." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5231.yml b/html/changelogs/AutoChangeLog-pr-5231.yml deleted file mode 100644 index f25150cbebf..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5231.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "RatFromTheJungle" -delete-after: True -changes: - - image: "adds greyscaling to some of the hard-colored underwears, so you can change the color, also adds thighhighs+kneehighs (shaded) for the drip-fest" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5234.yml b/html/changelogs/AutoChangeLog-pr-5234.yml deleted file mode 100644 index 50bc19c2c88..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5234.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "GoldenAlpharex" -delete-after: True -changes: - - bugfix: "Synths and slimefolks should no longer be getting weird ears suddenly growing on their heads overnight, and should properly get the ears (or lack thereof) they rightfully deserve from their genetics (or whatever the equivalent of genetics is for synthetic beings... Blueprints?)." \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index f0c29603f6b..b3ccf4d80cb 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -751,3 +751,17 @@ - rscadd: Nebulastation, new station map sqnztb: - map: Snowglobe - added stacking machine to disposals. +2024-12-14: + FlufflesTheDog: + - bugfix: sec helmet visor flipping works properly, and is now done via alt click. + GoldenAlpharex: + - bugfix: Synths and slimefolks should no longer be getting weird ears suddenly + growing on their heads overnight, and should properly get the ears (or lack + thereof) they rightfully deserve from their genetics (or whatever the equivalent + of genetics is for synthetic beings... Blueprints?). + RatFromTheJungle: + - image: adds greyscaling to some of the hard-colored underwears, so you can change + the color, also adds thighhighs+kneehighs (shaded) for the drip-fest + Stalkeros: + - bugfix: Very Interesting Vending Machine that bitrunners have can now actually + be used, no longer requiring money nor access. From 79f162107280061315331e52ebac9c08608d4c52 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:16:05 +0300 Subject: [PATCH 33/91] [MIRROR] Blind-people canes should be allowed to fit in suit storage slots (#5235) * Blind-people canes should be allowed to fit in suit storage slots (#4631) * cane * FUCK! * modulate it * i'm not talking abt spaghetti codde * SQN said this would work * Update _suits.dm * I guess this'll work as a sprite, if not i'll dye it white * forgor this lil thingy * Modularize the worn_icon_state override * Update code/modules/clothing/suits/_suits.dm * Update code/game/objects/items/weaponry.dm * Update modular_nova/master_files/code/game/objects/items/weaponry.dm --------- Co-authored-by: sqn Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] Blind-people canes should be allowed to fit in suit storage slots --------- Co-authored-by: MitztheKat Co-authored-by: sqn Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs --- code/modules/clothing/suits/_suits.dm | 1 + modular_nova/master_files/code/game/objects/items/weaponry.dm | 2 ++ tgstation.dme | 1 + 3 files changed, 4 insertions(+) create mode 100644 modular_nova/master_files/code/game/objects/items/weaponry.dm diff --git a/code/modules/clothing/suits/_suits.dm b/code/modules/clothing/suits/_suits.dm index 120e1af86dd..34df1d151f3 100644 --- a/code/modules/clothing/suits/_suits.dm +++ b/code/modules/clothing/suits/_suits.dm @@ -9,6 +9,7 @@ /obj/item/tank/internals/plasmaman, /obj/item/tank/jetpack/oxygen/captain, /obj/item/storage/belt/holster, + /obj/item/cane, // NOVA EDIT ADDITION ) armor_type = /datum/armor/none drop_sound = 'sound/items/handling/cloth_drop.ogg' diff --git a/modular_nova/master_files/code/game/objects/items/weaponry.dm b/modular_nova/master_files/code/game/objects/items/weaponry.dm new file mode 100644 index 00000000000..d6e30dfbe95 --- /dev/null +++ b/modular_nova/master_files/code/game/objects/items/weaponry.dm @@ -0,0 +1,2 @@ +/obj/item/cane + worn_icon_state = "nothing" diff --git a/tgstation.dme b/tgstation.dme index 12dd14df120..83ca2f9ac9e 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -6693,6 +6693,7 @@ #include "modular_nova\master_files\code\game\objects\items\RCD.dm" #include "modular_nova\master_files\code\game\objects\items\religion.dm" #include "modular_nova\master_files\code\game\objects\items\scratchingstone.dm" +#include "modular_nova\master_files\code\game\objects\items\weaponry.dm" #include "modular_nova\master_files\code\game\objects\items\wiki_manuals.dm" #include "modular_nova\master_files\code\game\objects\items\circuitboards\machines\machine_circuitboards.dm" #include "modular_nova\master_files\code\game\objects\items\devices\chameleonproj.dm" From 9982cc355ea667ea5370941a7250f015e1116a46 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:16:35 +0300 Subject: [PATCH 34/91] Automatic changelog for PR #5235 [ci skip] --- html/changelogs/AutoChangeLog-pr-5235.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5235.yml diff --git a/html/changelogs/AutoChangeLog-pr-5235.yml b/html/changelogs/AutoChangeLog-pr-5235.yml new file mode 100644 index 00000000000..93ce7303711 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5235.yml @@ -0,0 +1,4 @@ +author: "MitztheKat" +delete-after: True +changes: + - qol: "white canes (for blind people) now fit in suit storage slots." \ No newline at end of file From ce070392da14b8509ea2a1b30122a7db6a385732 Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 12:40:08 +0000 Subject: [PATCH 35/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5235.yml | 4 ---- html/changelogs/archive/2024-12.yml | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5235.yml diff --git a/html/changelogs/AutoChangeLog-pr-5235.yml b/html/changelogs/AutoChangeLog-pr-5235.yml deleted file mode 100644 index 93ce7303711..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5235.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "MitztheKat" -delete-after: True -changes: - - qol: "white canes (for blind people) now fit in suit storage slots." \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index b3ccf4d80cb..f74b54404ee 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -765,3 +765,6 @@ Stalkeros: - bugfix: Very Interesting Vending Machine that bitrunners have can now actually be used, no longer requiring money nor access. +2024-12-16: + MitztheKat: + - qol: white canes (for blind people) now fit in suit storage slots. From f8455332b779592ea437043d7cacaa46dff66b02 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:13:25 +0300 Subject: [PATCH 36/91] [MIRROR] Fixes Icemoon Interdyne Food Vendors (#5226) * Fixes Icemoon Interdyne Food Vendors (#4671) free icebox dyne food vendors * [MIRROR] Fixes Icemoon Interdyne Food Vendors --------- Co-authored-by: sqn Co-authored-by: StealsThePRs --- .../nova/icemoon_underground_interdyne_base1.dmm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/_maps/RandomRuins/IceRuins/nova/icemoon_underground_interdyne_base1.dmm b/_maps/RandomRuins/IceRuins/nova/icemoon_underground_interdyne_base1.dmm index bab5d59e066..cf3ed37602e 100644 --- a/_maps/RandomRuins/IceRuins/nova/icemoon_underground_interdyne_base1.dmm +++ b/_maps/RandomRuins/IceRuins/nova/icemoon_underground_interdyne_base1.dmm @@ -4387,7 +4387,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/poster/contraband/cybersun_six_hundred/directional/west, /obj/machinery/vending/imported/mothic{ - onstation = 0 + onstation = 0; + all_products_free = 1 }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/interdyne_planetary_base/main/dorms) @@ -4712,7 +4713,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/vending/imported/tiziran{ - onstation = 0 + onstation = 0; + all_products_free = 1 }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/interdyne_planetary_base/main/dorms) @@ -7417,7 +7419,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/sign/poster/contraband/interdyne_gene_clinics/directional/west, /obj/machinery/vending/imported/yangyu{ - onstation = 0 + onstation = 0; + all_products_free = 1 }, /turf/open/floor/catwalk_floor/iron_dark, /area/ruin/interdyne_planetary_base/main/dorms) From 8289c33d2217adea63b1ef72cff42baf6263efbd Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:13:45 +0300 Subject: [PATCH 37/91] [MIRROR] Slime-hybrid revival fixes (#5229) * Slime-hybrid revival fixes (#4666) * Slime fixes * Apply suggestions from code review --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] Slime-hybrid revival fixes --------- Co-authored-by: FlufflesTheDog Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs --- .../code/roundstartslime_bodyparts.dm | 38 ++++++ .../bodyparts/icons/slime_parts_greyscale.dmi | Bin 1504 -> 1547 bytes .../carbon/human/species/roundstartslime.dm | 112 ++++++++++-------- 3 files changed, 98 insertions(+), 52 deletions(-) diff --git a/modular_nova/modules/bodyparts/code/roundstartslime_bodyparts.dm b/modular_nova/modules/bodyparts/code/roundstartslime_bodyparts.dm index 922d7fc2647..eadd4240091 100644 --- a/modular_nova/modules/bodyparts/code/roundstartslime_bodyparts.dm +++ b/modular_nova/modules/bodyparts/code/roundstartslime_bodyparts.dm @@ -27,10 +27,26 @@ /obj/item/bodypart/leg/left/jelly/slime/roundstart icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME biological_state = (BIO_FLESH|BIO_BLOODED) + digitigrade_type = /obj/item/bodypart/leg/left/digitigrade/jelly/slime/roundstart /obj/item/bodypart/leg/right/jelly/slime/roundstart icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME biological_state = (BIO_FLESH|BIO_BLOODED) + digitigrade_type = /obj/item/bodypart/leg/right/digitigrade/jelly/slime/roundstart + +/obj/item/bodypart/leg/left/digitigrade/jelly/slime/roundstart + icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME + base_limb_id = SPECIES_SLIMEPERSON + biological_state = (BIO_FLESH|BIO_BLOODED) + dmg_overlay_type = null + burn_modifier = 0.5 // = 1/2x generic burn damage + +/obj/item/bodypart/leg/right/digitigrade/jelly/slime/roundstart + icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME + base_limb_id = SPECIES_SLIMEPERSON + biological_state = (BIO_FLESH|BIO_BLOODED) + dmg_overlay_type = null + burn_modifier = 0.5 // = 1/2x generic burn damage /obj/item/bodypart/head/jelly/drop_limb(special, dismembered, move_to_floor = FALSE) if(special) @@ -91,4 +107,26 @@ qdel(src) return . +/obj/item/bodypart/leg/left/digitigrade/jelly/drop_limb(special, dismembered, move_to_floor = FALSE) + if(special) + return ..() + + to_chat(owner, span_warning("Your [name] splatters with an unnerving squelch!")) + playsound(owner, 'sound/effects/blob/blobattack.ogg', 60, TRUE) + owner.blood_volume -= SLIME_LIMB_BLOOD_LOSS + . = ..() + drop_organs(src, TRUE) + qdel(src) + +/obj/item/bodypart/leg/right/digitigrade/jelly/drop_limb(special, dismembered, move_to_floor = FALSE) + if(special) + return ..() + + to_chat(owner, span_warning("Your [name] splatters with an unnerving squelch!")) + playsound(owner, 'sound/effects/blob/blobattack.ogg', 60, TRUE) + owner.blood_volume -= SLIME_LIMB_BLOOD_LOSS + . = ..() + drop_organs(src, TRUE) + qdel(src) + #undef SLIME_LIMB_BLOOD_LOSS diff --git a/modular_nova/modules/bodyparts/icons/slime_parts_greyscale.dmi b/modular_nova/modules/bodyparts/icons/slime_parts_greyscale.dmi index c37a0d42c6ae0c5919821975cf36fb0b8fb6dbac..6d4689dafdb00d5b40a436f2f84e580ae557fa4d 100644 GIT binary patch delta 1471 zcmY+Cc{J1u6vuzRjD0jHGBY$uqL4{N493(5S+j)q-XK~m%_7N``HfO&l<`VPq8D05 zBa{-^v!rRUg)+txS+mU8ns_?zbdGob_}+W&Iro0=`JBs_Wx`p?vLGNO1^_@%zK3hF zx*b#!>FRNocp}8_OaSd{0F?p&;kPrdzmloJ$}@%scN{2VUghj+*{U|K6YIliB0zja zfsj10E&i{UJ=I~oMx=)v?&As9XzJGu+Wn>vnI@QP&gCC+pXh4oSpouevaOwAwSjVQ zm4Y2G_SVC?kJTTkW9fJ&Wy8bmXNAKyyqHkop7+w5Z~y>nupts$!*5SyevItK z!Vm4vGtRw1tmey>*aPOM$R6+dcE*8D7@ z-TZXw$^suMwKZ993tl|ByVS(Ac|g6d@bVOHC5b#EiOQbf$Z)4SaZo;xTO|Fa^A-ww zIu$a^N@~vXtor)5e(D5@=7l=1EcXJwTFMu(-EwN-)}B(;EyHluV(~luP+yMI?lvGy zNf~_96OoMUKF)AhHs8Y^V>)?xNlc)zx^gN|$s0_7#XH|C#)sY9*{DW5+*ju55S3mZ zwb$pp=q}7xVRG8wY0z?@_Z>pI#lz4jk;a*G{nT{G@V>3{oM4(gP$nLaW({pxmx3p! zL5mjlidm1+?LFzE^)4YnahgxBdqbo5_3*z*RO$S~yAGE;LT%=7v{ftLLs1cP^#|Wf zZ<(7sY1-Jmpfl>SEhvbMsv#tDQ**+$517gp=b0x6D=Ndw%tm!eHg-(wF5giV!i-Mnt0+I1V3lQZVq=`1n?j^1JZT(+ntX$o!h}5^< zUwu;%Y5N*V?$G{Xmz#bx;nD`vgvv+emIe+FJT$3=5`p4S8oEF1Mz05k=bfuCs&Jen z^12KDe;dHN#gexPbo(Mjmsu1?OcLD4;&rGG8}Al^l<2*DG-_%tsp_*4KNJ(w8O#`p ziA|bv-ih>QAo0%Lw&1MME9er6C7k~_BCY7pP{6ycHfMA$U!XW7TFbO*xq8Q~xt?#P z{c+FEdS6SG*)+WYt1G9yM3Ndr1l-HOu7U!)cd9yPBoT|3W3y60}ceUU+zOLi>EN3KS#(r&YMO<5_|l1O2Fqh(iEN6e|g?XxYI zkN@oKpsv!;VK>U6@?q@PjP{t%;l%~{hak~2@cHm`P_zqw z2`X?uLhr!fmuFaiAP92Dyj8AJ7ZS?Ru4_Q+J9=PzkTIh_y`y-!u2wZ30eGB)bJ*s3@%A;J$2o z%oCN*=npvvsl8R#K0ZS1hYd}rusy{I|P4KcKlL2I4nt{1HYt7HWM=?8`WjtcC7B1;ja-J MO9vw7fX{`00c<>=YybcN delta 1427 zcmZ9IdoV<~JNNs~_rLGwe7-5lJf(D$62RL61pr`(<`|H% z!xdykAN9Uue>U>W#gOnzAz@?ypyU^1+9RdL|{VQl+CgZQZ-12y&X)DBs*!>~-n zJ9KV+t%(ik3)z~rDGfY#c@EoJ(jd^m;1z_-gHOiD*ml*>RhI)bo)rA#63TO*RuBhXu`L=|x?Vx91>Hb`SL1^-Mgxs!>u)r>qMspGLKwVC& z&!wDq84UWi;!Wm}CXSTBk$!&Sh5Jn?9|uv6{P1(6hhhr=$kLqbZH`j%XA9nC4Vo(3 zb9rjow&G28xhg%@2yJ{mh_idGE;iFFQ@wMU2eGyWcu3<%AD(HeBn$I4!w-~zkc?+& zl^enWKX`KcEQBGd5T~uAS@0qnvw6XtX^ZQPOJEVJjd_Bq3LXoFQ%;7thfi*FB^UOx zO(+p-h#Lws`D~7XzM)7i&)-fOn91d_LLo7e@_%3aT|{e6NcqGNkBBejlS^^Z2OUYX ziso>AK`+$Idmj-MYX1D0SJFj1{AIFO4ry^swe zXoxNxle%O<>lrfV)$A4NqrNIzcwpz^)6mqu786|;#fSPG;H>-lObPVMdIuD3HNP$KWoCB zw#VoAge+Ra!tii(v+nFTm$n|#h5Yu!{Er?&r$mRoq3Ti-MZww?Y!7HnakSVSKqGfJ ze3-5*anC3#EJtri(M-ZR(Of&O>|_>O-&kp4Q(jmdJf>}2Hg;EIBAMIz4g7C!ge_OSqUesw5`9R!G=B9N z3kS^#0ta`Z+~#dTuh^TU-|gCeib*l|aM{oz_X>mA3~LtqwO*ecsUQv;^1m@^y#dKS z^OXAW7WW+>uSN3kX`M^}JlHe%0+on?i{fD{iQfDwT-20?pAi6WvHHKib}1#%A;ob; zO<6L0zi1_M9RWB}$WhYo1?+G~{ahf6hKcd5+Nq9;k*+082)X}&%`t?BBOZHDE~np| zsf%Az`^XX@6YaGm@6XA(K?;3sv^pJ?7LC+N>pu6jbyoCN`Vj(@hOe~Uh48!tH9gfY z8sAM#`9z)J9ybU|RevtCF>xYE{d|rk4y?3kxRtw~K+EA-k)ulb7SF8QgNM(B9iB5V z;?uV_*tHW$XREXE3g*qZ36|i!LxhB=$h?%~VV!rQ_}Gla8B0wc{8bdOzDf;DIkkFX z3?=^R?k{!59UB?Hpw4&mst}`{O(#nGuL>x&m1Q=dv=+kUuGcmhhf5|)jc}j<;|E@G zEKj044`}?dk{Y2agn51EU2iyptdi*(tvN_6ffi43F3WB}IQmHUz!<8g%BuV;+3wMr zA%KV@jEv{spOR^n0>qIB$2XJCpBZiKWU3H3zkC-LK*slC{5uap@y$9OGcbEZrD3D< zxB__qqZ1q7Eh~Yk#VGy&Qip)c(Zhctz2k2;zn#VB;pp9){96Qg@RIzlmQ~nZF;oU# zW$q(^U?4H^Y=t^8^knQpdfitjAHDK%BQ!UETi-M?$1FICDoLpQ3LR#Ohu-FaOdP$~ cdjcVnQ#iD9= 100 && (organ_flags & ORGAN_ORGANIC)) //attempt to heal the brain - - user.visible_message(span_notice("[user] starts to slowly pour the contents of [item] onto [src]. It seems to bubble and roil, beginning to stretch its cytoskeleton outwards..."), span_notice("You start to slowly pour the contents of [item] onto [src]. It seems to bubble and roil, beginning to stretch its membrane outwards...")) - if(!do_after(user, 60 SECONDS, src)) - to_chat(user, span_warning("You failed to pour the contents of [item] onto [src]!")) - return TRUE - - user.visible_message(span_notice("[user] pours the contents of [item] onto [src], causing it to form a proper cytoplasm and outer membrane."), span_notice("You pour the contents of [item] onto [src], causing it to form a proper cytoplasm and outer membrane.")) - item.reagents.clear_reagents() //removes the whole shit - set_organ_damage(-maxHealth) //fully heals the brain - - if(gps_active) // making sure the gps signal is removed if it's active on revival - gps_active = FALSE - qdel(GetComponent(/datum/component/gps)) - - //we have the plasma. we can rebuild them. - if(isnull(brainmob)) - user.balloon_alert("This brain is not a viable candidate for repair!") - return TRUE - if(isnull(brainmob.stored_dna)) - user.balloon_alert("This brain does not contain any dna!") - return TRUE - if(isnull(brainmob.client)) - user.balloon_alert("This brain does not contain a mind!") - return TRUE - var/mob/living/carbon/human/new_body = new /mob/living/carbon/human(src.loc) - - brainmob.client?.prefs?.safe_transfer_prefs_to(new_body) - new_body.underwear = "Nude" - new_body.bra = "Nude" - new_body.undershirt = "Nude" //Which undershirt the player wants - new_body.socks = "Nude" //Which socks the player wants - brainmob.stored_dna.transfer_identity(new_body, transfer_SE=1) - new_body.dna.features["mcolor"] = new_body.dna.features["mcolor"] - new_body.dna.update_uf_block(DNA_MUTANT_COLOR_BLOCK) - new_body.real_name = new_body.dna.real_name - new_body.name = new_body.dna.real_name - new_body.updateappearance(mutcolor_update=1) - new_body.domutcheck() - new_body.forceMove(get_turf(src)) - new_body.blood_volume = BLOOD_VOLUME_SAFE+60 - REMOVE_TRAIT(new_body, TRAIT_NO_TRANSFORM, REF(src)) - SSquirks.AssignQuirks(new_body, brainmob.client) - src.replace_into(new_body) - for(var/obj/item/bodypart/bodypart as anything in new_body.bodyparts) - if(!istype(bodypart, /obj/item/bodypart/chest)) - bodypart.drop_limb() - continue - new_body.visible_message(span_warning("[new_body]'s torso \"forms\" from [new_body.p_their()] core, yet to form the rest.")) - to_chat(owner, span_purple("Your torso fully forms out of your core, yet to form the rest.")) - brainmob.mind.transfer_to(new_body) + if(!item.is_drainable() || item.reagents.get_reagent_amount(/datum/reagent/toxin/plasma) < 100) + return FALSE + user.visible_message( + span_notice("[user] starts to slowly pour the contents of [item] onto [src]. It seems to bubble and roil, beginning to stretch its cytoskeleton outwards..."), + span_notice("You start to slowly pour the contents of [item] onto [src]. It seems to bubble and roil, beginning to stretch its membrane outwards...") + ) + brainmob?.notify_revival("You are being revived!", sound = null, source = src) // no sound since it's a whopping 60 second wait time after this + if(!do_after(user, 60 SECONDS, src)) + to_chat(user, span_warning("You failed to pour the contents of [item] onto [src]!")) + return TRUE + + user.visible_message( + span_notice("[user] pours the contents of [item] onto [src], causing it to form a proper cytoplasm and outer membrane."), + span_notice("You pour the contents of [item] onto [src], causing it to form a proper cytoplasm and outer membrane.") + ) + item.reagents.clear_reagents() //removes the whole shit + if(isnull(brainmob)) + user.balloon_alert("This brain is not a viable candidate for repair!") return TRUE - return FALSE + brainmob.grab_ghost() + if(isnull(brainmob.stored_dna)) + user.balloon_alert("This brain does not contain any dna!") + return TRUE + if(isnull(brainmob.client)) + user.balloon_alert("This brain does not contain a mind!") + return TRUE + regenerate() + return TRUE + +/obj/item/organ/internal/brain/slime/proc/regenerate() + //we have the plasma. we can rebuild them. + set_organ_damage(-maxHealth) //fully heals the brain + if(gps_active) // making sure the gps signal is removed if it's active on revival + gps_active = FALSE + qdel(GetComponent(/datum/component/gps)) + + var/mob/living/carbon/human/new_body = new /mob/living/carbon/human(src.loc) + + brainmob.client?.prefs?.safe_transfer_prefs_to(new_body) + new_body.underwear = "Nude" + new_body.bra = "Nude" + new_body.undershirt = "Nude" //Which undershirt the player wants + new_body.socks = "Nude" //Which socks the player wants + brainmob.stored_dna.transfer_identity(new_body, transfer_SE=1) + new_body.dna.features["mcolor"] = new_body.dna.features["mcolor"] + new_body.dna.update_uf_block(DNA_MUTANT_COLOR_BLOCK) + new_body.real_name = new_body.dna.real_name + new_body.name = new_body.dna.real_name + new_body.updateappearance(mutcolor_update=1) + new_body.domutcheck() + new_body.forceMove(get_turf(src)) + new_body.blood_volume = BLOOD_VOLUME_SAFE+60 + SSquirks.AssignQuirks(new_body, brainmob.client) + src.replace_into(new_body) + for(var/obj/item/bodypart/bodypart as anything in new_body.bodyparts) + if(!istype(bodypart, /obj/item/bodypart/chest)) + bodypart.drop_limb() + continue + new_body.visible_message(span_warning("[new_body]'s torso \"forms\" from [new_body.p_their()] core, yet to form the rest.")) + to_chat(owner, span_purple("Your torso fully forms out of your core, yet to form the rest.")) + return TRUE // HEALING SECTION // Handles passive healing and water damage. From 791974182e86635c9d611b2f4287bc5849afbb28 Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:13:53 +0300 Subject: [PATCH 38/91] Automatic changelog for PR #5226 [ci skip] --- html/changelogs/AutoChangeLog-pr-5226.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5226.yml diff --git a/html/changelogs/AutoChangeLog-pr-5226.yml b/html/changelogs/AutoChangeLog-pr-5226.yml new file mode 100644 index 00000000000..58557e27d39 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5226.yml @@ -0,0 +1,4 @@ +author: "sqnztb" +delete-after: True +changes: + - bugfix: "icemoon's interdyne food vendors are free again" \ No newline at end of file From 6864785648a7d79657b3c8af0a0bca278b02c99f Mon Sep 17 00:00:00 2001 From: Yaroslav Nurkov <78199449+AnywayFarus@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:14:12 +0300 Subject: [PATCH 39/91] Automatic changelog for PR #5229 [ci skip] --- html/changelogs/AutoChangeLog-pr-5229.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5229.yml diff --git a/html/changelogs/AutoChangeLog-pr-5229.yml b/html/changelogs/AutoChangeLog-pr-5229.yml new file mode 100644 index 00000000000..58422cf5bcd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5229.yml @@ -0,0 +1,5 @@ +author: "FlufflesTheDog" +delete-after: True +changes: + - bugfix: "slime hybrid revival (via plasma in a beaker) should be more reliable" + - bugfix: "digitigrade slime legs function like other slime limbs when dismembered" \ No newline at end of file From 4a4633046c16a8428aa2c38c5794391ab16615d0 Mon Sep 17 00:00:00 2001 From: "tgstation-ci[bot]" <179393467+tgstation-ci[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 01:37:06 +0000 Subject: [PATCH 40/91] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-5226.yml | 4 ---- html/changelogs/AutoChangeLog-pr-5229.yml | 5 ----- html/changelogs/archive/2024-12.yml | 6 ++++++ 3 files changed, 6 insertions(+), 9 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-5226.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-5229.yml diff --git a/html/changelogs/AutoChangeLog-pr-5226.yml b/html/changelogs/AutoChangeLog-pr-5226.yml deleted file mode 100644 index 58557e27d39..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5226.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "sqnztb" -delete-after: True -changes: - - bugfix: "icemoon's interdyne food vendors are free again" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-5229.yml b/html/changelogs/AutoChangeLog-pr-5229.yml deleted file mode 100644 index 58422cf5bcd..00000000000 --- a/html/changelogs/AutoChangeLog-pr-5229.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "FlufflesTheDog" -delete-after: True -changes: - - bugfix: "slime hybrid revival (via plasma in a beaker) should be more reliable" - - bugfix: "digitigrade slime legs function like other slime limbs when dismembered" \ No newline at end of file diff --git a/html/changelogs/archive/2024-12.yml b/html/changelogs/archive/2024-12.yml index f74b54404ee..906305f3ec3 100644 --- a/html/changelogs/archive/2024-12.yml +++ b/html/changelogs/archive/2024-12.yml @@ -768,3 +768,9 @@ 2024-12-16: MitztheKat: - qol: white canes (for blind people) now fit in suit storage slots. +2024-12-17: + FlufflesTheDog: + - bugfix: slime hybrid revival (via plasma in a beaker) should be more reliable + - bugfix: digitigrade slime legs function like other slime limbs when dismembered + sqnztb: + - bugfix: icemoon's interdyne food vendors are free again From cfd2c80e6837a60e94fcfe6c9453fac0b79def23 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:06:38 +0300 Subject: [PATCH 41/91] [MIRROR] Snouts, tails, ears for acradors (#5232) * Snouts, tails, ears for acradors (#4627) * Snouts, tails, ears for acradors * A little fix * A trick to skip conflict * Snouts merge fix * [MIRROR] Snouts, tails, ears for acradors --------- Co-authored-by: Kush1Push1 <78963858+Kush1Push1@users.noreply.github.com> Co-authored-by: StealsThePRs --- .../icons/mob/sprite_accessory/ears_big.dmi | Bin 2771 -> 4321 bytes .../icons/mob/sprite_accessory/snouts.dmi | Bin 24785 -> 24966 bytes .../icons/mob/sprite_accessory/tails.dmi | Bin 209582 -> 226571 bytes .../new_player/sprite_accessories/ears.dm | 32 ++++++++++++++ .../new_player/sprite_accessories/snout.dm | 40 ++++++++++++------ .../new_player/sprite_accessories/tails.dm | 20 +++++++++ 6 files changed, 78 insertions(+), 14 deletions(-) diff --git a/modular_nova/master_files/icons/mob/sprite_accessory/ears_big.dmi b/modular_nova/master_files/icons/mob/sprite_accessory/ears_big.dmi index b5c86b10d735c0b85cfea6bea15e678fb57737bb..27b80c71d31655e7ebffd9ce74f1b2cf3aafb9cb 100644 GIT binary patch literal 4321 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 BO{D+; diff --git a/modular_nova/master_files/icons/mob/sprite_accessory/snouts.dmi b/modular_nova/master_files/icons/mob/sprite_accessory/snouts.dmi index 2be9e8a63598709b1d9b29c9edd543327013cd17..90eb314a1d0f32ae984efa463ef1164e8e58bd9a 100644 GIT binary patch literal 24966 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 literal 24785 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%0A!I4*t*2zGB!z5~iit4ULyXE& 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 K6`4B!{=Wbku~xeP literal 209582 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

DL^R&W|pc0yn?ytG6HyCAS_yaD=U6g~Y!)G@a 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

  • LSM5ZOL<;Prlp! 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